From bf69e96b79ac84099a2b07712074faac9f702b43 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 16 Aug 2023 16:41:31 -0400 Subject: [PATCH] chore: generate --- src/grammar.json | 648 +- src/node-types.json | 422 +- src/parser.c | 121722 +++++++++++++++++++++-------------------- 3 files changed, 64893 insertions(+), 57899 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 767ae40..6e53a5b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1021,17 +1021,8 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression" - }, - "named": true, - "value": "case_pattern" - } + "type": "SYMBOL", + "name": "case_pattern" }, { "type": "REPEAT", @@ -1043,17 +1034,8 @@ "value": "," }, { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression" - }, - "named": true, - "value": "case_pattern" - } + "type": "SYMBOL", + "name": "case_pattern" } ] } @@ -2301,30 +2283,626 @@ } }, "dotted_name": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "REPEAT", - "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + } + }, + "case_pattern": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_as_pattern" + }, + "named": true, + "value": "as_pattern" + }, + { + "type": "SYMBOL", + "name": "keyword_pattern" + }, + { + "type": "SYMBOL", + "name": "_simple_pattern" + } + ] + } + }, + "_simple_pattern": { + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "class_pattern" + }, + { + "type": "SYMBOL", + "name": "splat_pattern" + }, + { + "type": "SYMBOL", + "name": "union_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_list_pattern" + }, + "named": true, + "value": "list_pattern" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_tuple_pattern" + }, + "named": true, + "value": "tuple_pattern" + }, + { + "type": "SYMBOL", + "name": "dict_pattern" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "concatenated_string" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "none" + }, + { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "." + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "BLANK" + } + ] }, { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + } + ] } ] + }, + { + "type": "SYMBOL", + "name": "complex_pattern" + }, + { + "type": "SYMBOL", + "name": "dotted_name" + }, + { + "type": "STRING", + "value": "_" + } + ] + } + }, + "_as_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "case_pattern" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "union_pattern": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_pattern" + }, + { + "type": "REPEAT1", + "content": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_simple_pattern" + } + ] + } + } } + ] + } + }, + "_list_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "case_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "case_pattern" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" } ] }, + "_tuple_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "case_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "case_pattern" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "dict_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_key_value_pattern" + }, + { + "type": "SYMBOL", + "name": "splat_pattern" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_key_value_pattern" + }, + { + "type": "SYMBOL", + "name": "splat_pattern" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_key_value_pattern": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "_simple_pattern" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "case_pattern" + } + } + ] + }, + "keyword_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_simple_pattern" + } + ] + }, + "splat_pattern": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "**" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "STRING", + "value": "_" + } + ] + } + ] + } + }, + "class_pattern": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "dotted_name" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "case_pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "case_pattern" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "complex_pattern": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + } + ] + } + ] + } + }, "_parameters": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 9ef1648..73cebf2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -390,7 +390,7 @@ "fields": { "alias": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "as_pattern_target", @@ -400,12 +400,20 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": "case_pattern", + "named": true + }, { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true } ] } @@ -846,17 +854,96 @@ "named": true } ] - }, - "pattern": { - "multiple": true, - "required": true, - "types": [ - { - "type": "case_pattern", - "named": true - } - ] } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_pattern", + "named": true + } + ] + } + }, + { + "type": "case_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "as_pattern", + "named": true + }, + { + "type": "class_pattern", + "named": true + }, + { + "type": "complex_pattern", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "dict_pattern", + "named": true + }, + { + "type": "dotted_name", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keyword_pattern", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "none", + "named": true + }, + { + "type": "splat_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + }, + { + "type": "union_pattern", + "named": true + } + ] } }, { @@ -920,6 +1007,25 @@ } } }, + { + "type": "class_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_pattern", + "named": true + }, + { + "type": "dotted_name", + "named": true + } + ] + } + }, { "type": "comparison_operator", "named": true, @@ -986,6 +1092,25 @@ ] } }, + { + "type": "complex_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + } + ] + } + }, { "type": "concatenated_string", "named": true, @@ -1130,6 +1255,106 @@ ] } }, + { + "type": "dict_pattern", + "named": true, + "fields": { + "key": { + "multiple": true, + "required": false, + "types": [ + { + "type": "-", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "class_pattern", + "named": true + }, + { + "type": "complex_pattern", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "dict_pattern", + "named": true + }, + { + "type": "dotted_name", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "none", + "named": true + }, + { + "type": "splat_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + }, + { + "type": "union_pattern", + "named": true + } + ] + }, + "value": { + "multiple": true, + "required": false, + "types": [ + { + "type": "case_pattern", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "splat_pattern", + "named": true + } + ] + } + }, { "type": "dictionary", "named": true, @@ -1888,6 +2113,81 @@ } } }, + { + "type": "keyword_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "class_pattern", + "named": true + }, + { + "type": "complex_pattern", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "dict_pattern", + "named": true + }, + { + "type": "dotted_name", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "none", + "named": true + }, + { + "type": "splat_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + }, + { + "type": "union_pattern", + "named": true + } + ] + } + }, { "type": "keyword_separator", "named": true, @@ -1999,6 +2299,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "case_pattern", + "named": true + }, { "type": "pattern", "named": true @@ -2455,6 +2759,21 @@ ] } }, + { + "type": "splat_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, { "type": "splat_type", "named": true, @@ -2619,6 +2938,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "case_pattern", + "named": true + }, { "type": "pattern", "named": true @@ -2795,6 +3118,77 @@ } } }, + { + "type": "union_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "class_pattern", + "named": true + }, + { + "type": "complex_pattern", + "named": true + }, + { + "type": "concatenated_string", + "named": true + }, + { + "type": "dict_pattern", + "named": true + }, + { + "type": "dotted_name", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "none", + "named": true + }, + { + "type": "splat_pattern", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + }, + { + "type": "union_pattern", + "named": true + } + ] + } + }, { "type": "union_type", "named": true, @@ -3095,6 +3489,10 @@ "type": "^=", "named": false }, + { + "type": "_", + "named": false + }, { "type": "__future__", "named": false diff --git a/src/parser.c b/src/parser.c index 54199bd..da6e977 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2543 -#define LARGE_STATE_COUNT 193 -#define SYMBOL_COUNT 255 -#define ALIAS_COUNT 5 -#define TOKEN_COUNT 107 +#define STATE_COUNT 2819 +#define LARGE_STATE_COUNT 189 +#define SYMBOL_COUNT 270 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 108 #define EXTERNAL_TOKEN_COUNT 11 -#define FIELD_COUNT 33 +#define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 142 +#define PRODUCTION_ID_COUNT 140 enum { sym_identifier = 1, @@ -65,217 +65,231 @@ enum { anon_sym_LBRACK = 46, anon_sym_RBRACK = 47, anon_sym_AT = 48, - anon_sym_not = 49, - anon_sym_and = 50, - anon_sym_or = 51, - anon_sym_PLUS = 52, - anon_sym_DASH = 53, - anon_sym_SLASH = 54, - anon_sym_PERCENT = 55, - anon_sym_SLASH_SLASH = 56, - anon_sym_PIPE = 57, - anon_sym_AMP = 58, - anon_sym_CARET = 59, - anon_sym_LT_LT = 60, - anon_sym_TILDE = 61, - anon_sym_LT = 62, - anon_sym_LT_EQ = 63, - anon_sym_EQ_EQ = 64, - anon_sym_BANG_EQ = 65, - anon_sym_GT_EQ = 66, - anon_sym_GT = 67, - anon_sym_LT_GT = 68, - anon_sym_is = 69, - anon_sym_lambda = 70, - anon_sym_PLUS_EQ = 71, - anon_sym_DASH_EQ = 72, - anon_sym_STAR_EQ = 73, - anon_sym_SLASH_EQ = 74, - anon_sym_AT_EQ = 75, - anon_sym_SLASH_SLASH_EQ = 76, - anon_sym_PERCENT_EQ = 77, - anon_sym_STAR_STAR_EQ = 78, - anon_sym_GT_GT_EQ = 79, - anon_sym_LT_LT_EQ = 80, - anon_sym_AMP_EQ = 81, - anon_sym_CARET_EQ = 82, - anon_sym_PIPE_EQ = 83, - anon_sym_yield = 84, - sym_ellipsis = 85, - anon_sym_LBRACE = 86, - anon_sym_RBRACE = 87, - sym_escape_sequence = 88, - sym__not_escape_sequence = 89, - aux_sym_format_specifier_token1 = 90, - sym_type_conversion = 91, - sym_integer = 92, - sym_float = 93, - anon_sym_await = 94, - sym_true = 95, - sym_false = 96, - sym_none = 97, - sym_comment = 98, - sym_line_continuation = 99, - sym__newline = 100, - sym__indent = 101, - sym__dedent = 102, - sym_string_start = 103, - sym__string_content = 104, - sym_escape_interpolation = 105, - sym_string_end = 106, - sym_module = 107, - sym__statement = 108, - sym__simple_statements = 109, - sym_import_statement = 110, - sym_import_prefix = 111, - sym_relative_import = 112, - sym_future_import_statement = 113, - sym_import_from_statement = 114, - sym__import_list = 115, - sym_aliased_import = 116, - sym_wildcard_import = 117, - sym_print_statement = 118, - sym_chevron = 119, - sym_assert_statement = 120, - sym_expression_statement = 121, - sym_named_expression = 122, - sym__named_expression_lhs = 123, - sym_return_statement = 124, - sym_delete_statement = 125, - sym_raise_statement = 126, - sym_pass_statement = 127, - sym_break_statement = 128, - sym_continue_statement = 129, - sym_if_statement = 130, - sym_elif_clause = 131, - sym_else_clause = 132, - sym_match_statement = 133, - sym__match_block = 134, - sym_case_clause = 135, - sym_for_statement = 136, - sym_while_statement = 137, - sym_try_statement = 138, - sym_except_clause = 139, - sym_except_group_clause = 140, - sym_finally_clause = 141, - sym_with_statement = 142, - sym_with_clause = 143, - sym_with_item = 144, - sym_function_definition = 145, - sym_parameters = 146, - sym_lambda_parameters = 147, - sym_list_splat = 148, - sym_dictionary_splat = 149, - sym_global_statement = 150, - sym_nonlocal_statement = 151, - sym_exec_statement = 152, - sym_type_alias_statement = 153, - sym_class_definition = 154, - sym_type_parameter = 155, - sym_parenthesized_list_splat = 156, - sym_argument_list = 157, - sym_decorated_definition = 158, - sym_decorator = 159, - sym_block = 160, - sym_expression_list = 161, - sym_dotted_name = 162, - sym__parameters = 163, - sym__patterns = 164, - sym_parameter = 165, - sym_pattern = 166, - sym_tuple_pattern = 167, - sym_list_pattern = 168, - sym_default_parameter = 169, - sym_typed_default_parameter = 170, - sym_list_splat_pattern = 171, - sym_dictionary_splat_pattern = 172, - sym_as_pattern = 173, - sym__expression_within_for_in_clause = 174, - sym_expression = 175, - sym_primary_expression = 176, - sym_not_operator = 177, - sym_boolean_operator = 178, - sym_binary_operator = 179, - sym_unary_operator = 180, - sym_comparison_operator = 181, - sym_lambda = 182, - sym_lambda_within_for_in_clause = 183, - sym_assignment = 184, - sym_augmented_assignment = 185, - sym_pattern_list = 186, - sym__right_hand_side = 187, - sym_yield = 188, - sym_attribute = 189, - sym_subscript = 190, - sym_slice = 191, - sym_call = 192, - sym_typed_parameter = 193, - sym_type = 194, - sym_splat_type = 195, - sym_generic_type = 196, - sym_union_type = 197, - sym_constrained_type = 198, - sym_member_type = 199, - sym_keyword_argument = 200, - sym_list = 201, - sym_set = 202, - sym_tuple = 203, - sym_dictionary = 204, - sym_pair = 205, - sym_list_comprehension = 206, - sym_dictionary_comprehension = 207, - sym_set_comprehension = 208, - sym_generator_expression = 209, - sym__comprehension_clauses = 210, - sym_parenthesized_expression = 211, - sym__collection_elements = 212, - sym_for_in_clause = 213, - sym_if_clause = 214, - sym_conditional_expression = 215, - sym_concatenated_string = 216, - sym_string = 217, - sym_string_content = 218, - sym_interpolation = 219, - sym__f_expression = 220, - sym_format_specifier = 221, - sym_await = 222, - sym_positional_separator = 223, - sym_keyword_separator = 224, - aux_sym_module_repeat1 = 225, - aux_sym__simple_statements_repeat1 = 226, - aux_sym_import_prefix_repeat1 = 227, - aux_sym__import_list_repeat1 = 228, - aux_sym_print_statement_repeat1 = 229, - aux_sym_assert_statement_repeat1 = 230, - aux_sym_if_statement_repeat1 = 231, - aux_sym_match_statement_repeat1 = 232, - aux_sym__match_block_repeat1 = 233, - aux_sym_case_clause_repeat1 = 234, - aux_sym_try_statement_repeat1 = 235, - aux_sym_try_statement_repeat2 = 236, - aux_sym_with_clause_repeat1 = 237, - aux_sym_global_statement_repeat1 = 238, - aux_sym_type_parameter_repeat1 = 239, - aux_sym_argument_list_repeat1 = 240, - aux_sym_decorated_definition_repeat1 = 241, - aux_sym_dotted_name_repeat1 = 242, - aux_sym__parameters_repeat1 = 243, - aux_sym__patterns_repeat1 = 244, - aux_sym_comparison_operator_repeat1 = 245, - aux_sym_subscript_repeat1 = 246, - aux_sym_dictionary_repeat1 = 247, - aux_sym__comprehension_clauses_repeat1 = 248, - aux_sym__collection_elements_repeat1 = 249, - aux_sym_for_in_clause_repeat1 = 250, - aux_sym_concatenated_string_repeat1 = 251, - aux_sym_string_repeat1 = 252, - aux_sym_string_content_repeat1 = 253, - aux_sym_format_specifier_repeat1 = 254, - alias_sym_as_pattern_target = 255, - alias_sym_case_pattern = 256, - alias_sym_format_expression = 257, - anon_alias_sym_is_SPACEnot = 258, - anon_alias_sym_not_SPACEin = 259, + anon_sym_DASH = 49, + anon_sym__ = 50, + anon_sym_PIPE = 51, + anon_sym_LBRACE = 52, + anon_sym_RBRACE = 53, + anon_sym_PLUS = 54, + anon_sym_not = 55, + anon_sym_and = 56, + anon_sym_or = 57, + anon_sym_SLASH = 58, + anon_sym_PERCENT = 59, + anon_sym_SLASH_SLASH = 60, + anon_sym_AMP = 61, + anon_sym_CARET = 62, + anon_sym_LT_LT = 63, + anon_sym_TILDE = 64, + anon_sym_LT = 65, + anon_sym_LT_EQ = 66, + anon_sym_EQ_EQ = 67, + anon_sym_BANG_EQ = 68, + anon_sym_GT_EQ = 69, + anon_sym_GT = 70, + anon_sym_LT_GT = 71, + anon_sym_is = 72, + anon_sym_lambda = 73, + anon_sym_PLUS_EQ = 74, + anon_sym_DASH_EQ = 75, + anon_sym_STAR_EQ = 76, + anon_sym_SLASH_EQ = 77, + anon_sym_AT_EQ = 78, + anon_sym_SLASH_SLASH_EQ = 79, + anon_sym_PERCENT_EQ = 80, + anon_sym_STAR_STAR_EQ = 81, + anon_sym_GT_GT_EQ = 82, + anon_sym_LT_LT_EQ = 83, + anon_sym_AMP_EQ = 84, + anon_sym_CARET_EQ = 85, + anon_sym_PIPE_EQ = 86, + anon_sym_yield = 87, + sym_ellipsis = 88, + sym_escape_sequence = 89, + sym__not_escape_sequence = 90, + aux_sym_format_specifier_token1 = 91, + sym_type_conversion = 92, + sym_integer = 93, + sym_float = 94, + anon_sym_await = 95, + sym_true = 96, + sym_false = 97, + sym_none = 98, + sym_comment = 99, + sym_line_continuation = 100, + sym__newline = 101, + sym__indent = 102, + sym__dedent = 103, + sym_string_start = 104, + sym__string_content = 105, + sym_escape_interpolation = 106, + sym_string_end = 107, + sym_module = 108, + sym__statement = 109, + sym__simple_statements = 110, + sym_import_statement = 111, + sym_import_prefix = 112, + sym_relative_import = 113, + sym_future_import_statement = 114, + sym_import_from_statement = 115, + sym__import_list = 116, + sym_aliased_import = 117, + sym_wildcard_import = 118, + sym_print_statement = 119, + sym_chevron = 120, + sym_assert_statement = 121, + sym_expression_statement = 122, + sym_named_expression = 123, + sym__named_expression_lhs = 124, + sym_return_statement = 125, + sym_delete_statement = 126, + sym_raise_statement = 127, + sym_pass_statement = 128, + sym_break_statement = 129, + sym_continue_statement = 130, + sym_if_statement = 131, + sym_elif_clause = 132, + sym_else_clause = 133, + sym_match_statement = 134, + sym__match_block = 135, + sym_case_clause = 136, + sym_for_statement = 137, + sym_while_statement = 138, + sym_try_statement = 139, + sym_except_clause = 140, + sym_except_group_clause = 141, + sym_finally_clause = 142, + sym_with_statement = 143, + sym_with_clause = 144, + sym_with_item = 145, + sym_function_definition = 146, + sym_parameters = 147, + sym_lambda_parameters = 148, + sym_list_splat = 149, + sym_dictionary_splat = 150, + sym_global_statement = 151, + sym_nonlocal_statement = 152, + sym_exec_statement = 153, + sym_type_alias_statement = 154, + sym_class_definition = 155, + sym_type_parameter = 156, + sym_parenthesized_list_splat = 157, + sym_argument_list = 158, + sym_decorated_definition = 159, + sym_decorator = 160, + sym_block = 161, + sym_expression_list = 162, + sym_dotted_name = 163, + sym_case_pattern = 164, + sym__simple_pattern = 165, + sym__as_pattern = 166, + sym_union_pattern = 167, + sym__list_pattern = 168, + sym__tuple_pattern = 169, + sym_dict_pattern = 170, + sym__key_value_pattern = 171, + sym_keyword_pattern = 172, + sym_splat_pattern = 173, + sym_class_pattern = 174, + sym_complex_pattern = 175, + sym__parameters = 176, + sym__patterns = 177, + sym_parameter = 178, + sym_pattern = 179, + sym_tuple_pattern = 180, + sym_list_pattern = 181, + sym_default_parameter = 182, + sym_typed_default_parameter = 183, + sym_list_splat_pattern = 184, + sym_dictionary_splat_pattern = 185, + sym_as_pattern = 186, + sym__expression_within_for_in_clause = 187, + sym_expression = 188, + sym_primary_expression = 189, + sym_not_operator = 190, + sym_boolean_operator = 191, + sym_binary_operator = 192, + sym_unary_operator = 193, + sym_comparison_operator = 194, + sym_lambda = 195, + sym_lambda_within_for_in_clause = 196, + sym_assignment = 197, + sym_augmented_assignment = 198, + sym_pattern_list = 199, + sym__right_hand_side = 200, + sym_yield = 201, + sym_attribute = 202, + sym_subscript = 203, + sym_slice = 204, + sym_call = 205, + sym_typed_parameter = 206, + sym_type = 207, + sym_splat_type = 208, + sym_generic_type = 209, + sym_union_type = 210, + sym_constrained_type = 211, + sym_member_type = 212, + sym_keyword_argument = 213, + sym_list = 214, + sym_set = 215, + sym_tuple = 216, + sym_dictionary = 217, + sym_pair = 218, + sym_list_comprehension = 219, + sym_dictionary_comprehension = 220, + sym_set_comprehension = 221, + sym_generator_expression = 222, + sym__comprehension_clauses = 223, + sym_parenthesized_expression = 224, + sym__collection_elements = 225, + sym_for_in_clause = 226, + sym_if_clause = 227, + sym_conditional_expression = 228, + sym_concatenated_string = 229, + sym_string = 230, + sym_string_content = 231, + sym_interpolation = 232, + sym__f_expression = 233, + sym_format_specifier = 234, + sym_await = 235, + sym_positional_separator = 236, + sym_keyword_separator = 237, + aux_sym_module_repeat1 = 238, + aux_sym__simple_statements_repeat1 = 239, + aux_sym_import_prefix_repeat1 = 240, + aux_sym__import_list_repeat1 = 241, + aux_sym_print_statement_repeat1 = 242, + aux_sym_assert_statement_repeat1 = 243, + aux_sym_if_statement_repeat1 = 244, + aux_sym_match_statement_repeat1 = 245, + aux_sym__match_block_repeat1 = 246, + aux_sym_case_clause_repeat1 = 247, + aux_sym_try_statement_repeat1 = 248, + aux_sym_try_statement_repeat2 = 249, + aux_sym_with_clause_repeat1 = 250, + aux_sym_global_statement_repeat1 = 251, + aux_sym_type_parameter_repeat1 = 252, + aux_sym_argument_list_repeat1 = 253, + aux_sym_decorated_definition_repeat1 = 254, + aux_sym_dotted_name_repeat1 = 255, + aux_sym_union_pattern_repeat1 = 256, + aux_sym_dict_pattern_repeat1 = 257, + aux_sym__parameters_repeat1 = 258, + aux_sym__patterns_repeat1 = 259, + aux_sym_comparison_operator_repeat1 = 260, + aux_sym_subscript_repeat1 = 261, + aux_sym_dictionary_repeat1 = 262, + aux_sym__comprehension_clauses_repeat1 = 263, + aux_sym__collection_elements_repeat1 = 264, + aux_sym_for_in_clause_repeat1 = 265, + aux_sym_concatenated_string_repeat1 = 266, + aux_sym_string_repeat1 = 267, + aux_sym_string_content_repeat1 = 268, + aux_sym_format_specifier_repeat1 = 269, + alias_sym_as_pattern_target = 270, + alias_sym_format_expression = 271, + anon_alias_sym_is_SPACEnot = 272, + anon_alias_sym_not_SPACEin = 273, }; static const char * const ts_symbol_names[] = { @@ -328,15 +342,18 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_AT] = "@", + [anon_sym_DASH] = "-", + [anon_sym__] = "_", + [anon_sym_PIPE] = "|", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_PLUS] = "+", [anon_sym_not] = "not", [anon_sym_and] = "and", [anon_sym_or] = "or", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_SLASH_SLASH] = "//", - [anon_sym_PIPE] = "|", [anon_sym_AMP] = "&", [anon_sym_CARET] = "^", [anon_sym_LT_LT] = "<<", @@ -365,8 +382,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE_EQ] = "|=", [anon_sym_yield] = "yield", [sym_ellipsis] = "ellipsis", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", [sym_escape_sequence] = "escape_sequence", [sym__not_escape_sequence] = "_not_escape_sequence", [aux_sym_format_specifier_token1] = "format_specifier_token1", @@ -442,6 +457,18 @@ static const char * const ts_symbol_names[] = { [sym_block] = "block", [sym_expression_list] = "expression_list", [sym_dotted_name] = "dotted_name", + [sym_case_pattern] = "case_pattern", + [sym__simple_pattern] = "_simple_pattern", + [sym__as_pattern] = "as_pattern", + [sym_union_pattern] = "union_pattern", + [sym__list_pattern] = "list_pattern", + [sym__tuple_pattern] = "tuple_pattern", + [sym_dict_pattern] = "dict_pattern", + [sym__key_value_pattern] = "_key_value_pattern", + [sym_keyword_pattern] = "keyword_pattern", + [sym_splat_pattern] = "splat_pattern", + [sym_class_pattern] = "class_pattern", + [sym_complex_pattern] = "complex_pattern", [sym__parameters] = "_parameters", [sym__patterns] = "_patterns", [sym_parameter] = "parameter", @@ -522,6 +549,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_argument_list_repeat1] = "argument_list_repeat1", [aux_sym_decorated_definition_repeat1] = "decorated_definition_repeat1", [aux_sym_dotted_name_repeat1] = "dotted_name_repeat1", + [aux_sym_union_pattern_repeat1] = "union_pattern_repeat1", + [aux_sym_dict_pattern_repeat1] = "dict_pattern_repeat1", [aux_sym__parameters_repeat1] = "_parameters_repeat1", [aux_sym__patterns_repeat1] = "_patterns_repeat1", [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", @@ -535,7 +564,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_content_repeat1] = "string_content_repeat1", [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [alias_sym_as_pattern_target] = "as_pattern_target", - [alias_sym_case_pattern] = "case_pattern", [alias_sym_format_expression] = "format_expression", [anon_alias_sym_is_SPACEnot] = "is not", [anon_alias_sym_not_SPACEin] = "not in", @@ -591,15 +619,18 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [anon_sym_AT] = anon_sym_AT, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym__] = anon_sym__, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_not] = anon_sym_not, [anon_sym_and] = anon_sym_and, [anon_sym_or] = anon_sym_or, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, - [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_AMP] = anon_sym_AMP, [anon_sym_CARET] = anon_sym_CARET, [anon_sym_LT_LT] = anon_sym_LT_LT, @@ -628,8 +659,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, [anon_sym_yield] = anon_sym_yield, [sym_ellipsis] = sym_ellipsis, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, [sym_escape_sequence] = sym_escape_sequence, [sym__not_escape_sequence] = sym__not_escape_sequence, [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, @@ -705,6 +734,18 @@ static const TSSymbol ts_symbol_map[] = { [sym_block] = sym_block, [sym_expression_list] = sym_expression_list, [sym_dotted_name] = sym_dotted_name, + [sym_case_pattern] = sym_case_pattern, + [sym__simple_pattern] = sym__simple_pattern, + [sym__as_pattern] = sym_as_pattern, + [sym_union_pattern] = sym_union_pattern, + [sym__list_pattern] = sym_list_pattern, + [sym__tuple_pattern] = sym_tuple_pattern, + [sym_dict_pattern] = sym_dict_pattern, + [sym__key_value_pattern] = sym__key_value_pattern, + [sym_keyword_pattern] = sym_keyword_pattern, + [sym_splat_pattern] = sym_splat_pattern, + [sym_class_pattern] = sym_class_pattern, + [sym_complex_pattern] = sym_complex_pattern, [sym__parameters] = sym__parameters, [sym__patterns] = sym__patterns, [sym_parameter] = sym_parameter, @@ -785,6 +826,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, [aux_sym_decorated_definition_repeat1] = aux_sym_decorated_definition_repeat1, [aux_sym_dotted_name_repeat1] = aux_sym_dotted_name_repeat1, + [aux_sym_union_pattern_repeat1] = aux_sym_union_pattern_repeat1, + [aux_sym_dict_pattern_repeat1] = aux_sym_dict_pattern_repeat1, [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, @@ -798,7 +841,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, - [alias_sym_case_pattern] = alias_sym_case_pattern, [alias_sym_format_expression] = alias_sym_format_expression, [anon_alias_sym_is_SPACEnot] = anon_alias_sym_is_SPACEnot, [anon_alias_sym_not_SPACEin] = anon_alias_sym_not_SPACEin, @@ -1001,15 +1043,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_not] = { + [anon_sym_DASH] = { .visible = true, .named = false, }, - [anon_sym_and] = { + [anon_sym__] = { .visible = true, .named = false, }, - [anon_sym_or] = { + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { .visible = true, .named = false, }, @@ -1017,23 +1067,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { + [anon_sym_not] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_and] = { .visible = true, .named = false, }, - [anon_sym_PERCENT] = { + [anon_sym_or] = { .visible = true, .named = false, }, - [anon_sym_SLASH_SLASH] = { + [anon_sym_SLASH] = { .visible = true, .named = false, }, - [anon_sym_PIPE] = { + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { .visible = true, .named = false, }, @@ -1149,14 +1203,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, [sym_escape_sequence] = { .visible = true, .named = true, @@ -1457,6 +1503,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_case_pattern] = { + .visible = true, + .named = true, + }, + [sym__simple_pattern] = { + .visible = false, + .named = true, + }, + [sym__as_pattern] = { + .visible = true, + .named = true, + }, + [sym_union_pattern] = { + .visible = true, + .named = true, + }, + [sym__list_pattern] = { + .visible = true, + .named = true, + }, + [sym__tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_dict_pattern] = { + .visible = true, + .named = true, + }, + [sym__key_value_pattern] = { + .visible = false, + .named = true, + }, + [sym_keyword_pattern] = { + .visible = true, + .named = true, + }, + [sym_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_class_pattern] = { + .visible = true, + .named = true, + }, + [sym_complex_pattern] = { + .visible = true, + .named = true, + }, [sym__parameters] = { .visible = false, .named = true, @@ -1781,6 +1875,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_union_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dict_pattern_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__parameters_repeat1] = { .visible = false, .named = false, @@ -1833,10 +1935,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_case_pattern] = { - .visible = true, - .named = true, - }, [alias_sym_format_expression] = { .visible = true, .named = true, @@ -1875,16 +1973,15 @@ enum { field_operator = 21, field_operators = 22, field_parameters = 23, - field_pattern = 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_return_type = 24, + field_right = 25, + field_subject = 26, + field_subscript = 27, + field_superclasses = 28, + field_type = 29, + field_type_conversion = 30, + field_type_parameters = 31, + field_value = 32, }; static const char * const ts_field_names[] = { @@ -1912,7 +2009,6 @@ static const char * const ts_field_names[] = { [field_operator] = "operator", [field_operators] = "operators", [field_parameters] = "parameters", - [field_pattern] = "pattern", [field_return_type] = "return_type", [field_right] = "right", [field_subject] = "subject", @@ -1965,8 +2061,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 17, .length = 1}, [43] = {.index = 57, .length = 1}, [44] = {.index = 58, .length = 2}, - [45] = {.index = 60, .length = 1}, - [46] = {.index = 61, .length = 2}, + [45] = {.index = 60, .length = 2}, + [46] = {.index = 62, .length = 1}, [47] = {.index = 63, .length = 2}, [48] = {.index = 65, .length = 2}, [49] = {.index = 67, .length = 2}, @@ -2028,36 +2124,34 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [108] = {.index = 224, .length = 5}, [109] = {.index = 229, .length = 5}, [110] = {.index = 234, .length = 3}, - [111] = {.index = 237, .length = 1}, - [112] = {.index = 238, .length = 2}, - [113] = {.index = 240, .length = 2}, - [114] = {.index = 242, .length = 4}, - [115] = {.index = 246, .length = 4}, - [116] = {.index = 250, .length = 4}, - [117] = {.index = 254, .length = 5}, - [118] = {.index = 259, .length = 5}, - [119] = {.index = 264, .length = 5}, - [120] = {.index = 269, .length = 5}, - [121] = {.index = 274, .length = 2}, - [122] = {.index = 276, .length = 3}, - [123] = {.index = 279, .length = 3}, - [124] = {.index = 282, .length = 3}, - [125] = {.index = 285, .length = 5}, - [126] = {.index = 290, .length = 5}, - [127] = {.index = 295, .length = 5}, - [129] = {.index = 300, .length = 6}, - [130] = {.index = 306, .length = 3}, - [131] = {.index = 309, .length = 3}, - [132] = {.index = 312, .length = 4}, - [133] = {.index = 316, .length = 3}, - [134] = {.index = 319, .length = 4}, - [135] = {.index = 323, .length = 4}, - [136] = {.index = 327, .length = 6}, - [137] = {.index = 333, .length = 4}, - [138] = {.index = 337, .length = 4}, - [139] = {.index = 341, .length = 4}, - [140] = {.index = 345, .length = 5}, - [141] = {.index = 350, .length = 5}, + [111] = {.index = 237, .length = 2}, + [112] = {.index = 239, .length = 1}, + [113] = {.index = 240, .length = 4}, + [114] = {.index = 244, .length = 4}, + [115] = {.index = 248, .length = 4}, + [116] = {.index = 252, .length = 5}, + [117] = {.index = 257, .length = 5}, + [118] = {.index = 262, .length = 5}, + [119] = {.index = 267, .length = 5}, + [120] = {.index = 272, .length = 4}, + [121] = {.index = 276, .length = 4}, + [122] = {.index = 280, .length = 2}, + [123] = {.index = 282, .length = 1}, + [124] = {.index = 283, .length = 2}, + [125] = {.index = 285, .length = 2}, + [126] = {.index = 287, .length = 5}, + [127] = {.index = 292, .length = 5}, + [128] = {.index = 297, .length = 5}, + [130] = {.index = 302, .length = 6}, + [131] = {.index = 308, .length = 2}, + [132] = {.index = 310, .length = 2}, + [133] = {.index = 312, .length = 3}, + [134] = {.index = 315, .length = 1}, + [135] = {.index = 316, .length = 6}, + [136] = {.index = 322, .length = 3}, + [137] = {.index = 325, .length = 2}, + [138] = {.index = 327, .length = 2}, + [139] = {.index = 329, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2161,13 +2255,13 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_name, 1}, [60] = + {field_key, 0}, + {field_value, 2}, + [62] = {field_type, 2}, - [61] = + [63] = {field_body, 3}, {field_parameters, 1}, - [63] = - {field_key, 0}, - {field_value, 2}, [65] = {field_subscript, 2}, {field_value, 0}, @@ -2399,153 +2493,128 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_right, 4}, {field_right, 5}, [237] = - {field_pattern, 1}, - [238] = + {field_key, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [239] = {field_consequence, 3}, - {field_pattern, 1}, [240] = - {field_pattern, 0, .inherited = true}, - {field_pattern, 1, .inherited = true}, - [242] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [246] = + [244] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [250] = + [248] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [254] = + [252] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [259] = + [257] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [264] = + [262] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [269] = + [267] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [274] = - {field_consequence, 4}, - {field_pattern, 1}, + [272] = + {field_key, 1, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_value, 1, .inherited = true}, + {field_value, 2, .inherited = true}, [276] = + {field_key, 0, .inherited = true}, + {field_key, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [280] = + {field_key, 2, .inherited = true}, + {field_value, 2, .inherited = true}, + [282] = + {field_consequence, 4}, + [283] = {field_consequence, 3}, {field_consequence, 4}, - {field_pattern, 1}, - [279] = + [285] = {field_consequence, 4}, {field_guard, 2}, - {field_pattern, 1}, - [282] = - {field_consequence, 4}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [285] = + [287] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [290] = + [292] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [295] = + [297] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [300] = + [302] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [306] = + [308] = {field_consequence, 4}, {field_consequence, 5}, - {field_pattern, 1}, - [309] = + [310] = {field_consequence, 5}, {field_guard, 3}, - {field_pattern, 1}, [312] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - {field_pattern, 1}, - [316] = - {field_consequence, 5}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [319] = - {field_consequence, 4}, - {field_consequence, 5}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [323] = + [315] = {field_consequence, 5}, - {field_guard, 3}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [327] = + [316] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [333] = + [322] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - {field_pattern, 1}, - [337] = + [325] = {field_consequence, 5}, {field_consequence, 6}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [341] = + [327] = {field_consequence, 6}, {field_guard, 4}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [345] = - {field_consequence, 5}, - {field_consequence, 6}, - {field_guard, 3}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, - [350] = + [329] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, - {field_pattern, 1}, - {field_pattern, 2, .inherited = true}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2648,80 +2717,39 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [107] = { [6] = sym_block, }, - [111] = { - [1] = alias_sym_case_pattern, - }, [112] = { - [1] = alias_sym_case_pattern, [3] = sym_block, }, - [114] = { + [113] = { [6] = sym_block, }, - [116] = { + [115] = { [7] = sym_block, }, - [120] = { + [119] = { [7] = sym_block, }, - [121] = { - [1] = alias_sym_case_pattern, - [4] = sym_block, - }, - [122] = { - [1] = alias_sym_case_pattern, - }, [123] = { - [1] = alias_sym_case_pattern, [4] = sym_block, }, - [124] = { - [1] = alias_sym_case_pattern, + [125] = { [4] = sym_block, }, - [127] = { - [8] = sym_block, - }, [128] = { - [5] = sym_block, - }, - [130] = { - [1] = alias_sym_case_pattern, + [8] = sym_block, }, - [131] = { - [1] = alias_sym_case_pattern, + [129] = { [5] = sym_block, }, [132] = { - [1] = alias_sym_case_pattern, - }, - [133] = { - [1] = alias_sym_case_pattern, [5] = sym_block, }, [134] = { - [1] = alias_sym_case_pattern, - }, - [135] = { - [1] = alias_sym_case_pattern, [5] = sym_block, }, - [137] = { - [1] = alias_sym_case_pattern, - }, [138] = { - [1] = alias_sym_case_pattern, - }, - [139] = { - [1] = alias_sym_case_pattern, [6] = sym_block, }, - [140] = { - [1] = alias_sym_case_pattern, - }, - [141] = { - [1] = alias_sym_case_pattern, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2734,10 +2762,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_list_splat_pattern, 2, sym_list_splat_pattern, sym_list_splat, - sym_expression, 3, + sym_expression, 2, sym_expression, alias_sym_as_pattern_target, - alias_sym_case_pattern, sym_interpolation, 2, sym_interpolation, alias_sym_format_expression, @@ -2757,731 +2784,731 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [9] = 9, [10] = 10, [11] = 11, - [12] = 12, + [12] = 2, [13] = 13, - [14] = 14, + [14] = 3, [15] = 15, [16] = 16, [17] = 17, [18] = 18, [19] = 19, - [20] = 20, - [21] = 18, - [22] = 20, - [23] = 19, - [24] = 24, - [25] = 5, - [26] = 11, - [27] = 15, - [28] = 28, - [29] = 29, + [20] = 7, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 5, + [25] = 25, + [26] = 8, + [27] = 27, + [28] = 16, + [29] = 11, [30] = 30, - [31] = 31, - [32] = 32, + [31] = 6, + [32] = 19, [33] = 33, - [34] = 34, - [35] = 35, - [36] = 35, - [37] = 30, - [38] = 28, - [39] = 24, - [40] = 17, + [34] = 10, + [35] = 23, + [36] = 22, + [37] = 17, + [38] = 21, + [39] = 39, + [40] = 40, [41] = 41, - [42] = 16, - [43] = 6, + [42] = 25, + [43] = 43, [44] = 44, - [45] = 3, - [46] = 46, - [47] = 14, - [48] = 4, + [45] = 45, + [46] = 44, + [47] = 47, + [48] = 48, [49] = 13, - [50] = 33, + [50] = 15, [51] = 51, - [52] = 7, - [53] = 12, - [54] = 54, - [55] = 10, - [56] = 8, - [57] = 57, - [58] = 29, - [59] = 34, - [60] = 31, - [61] = 32, - [62] = 9, - [63] = 63, + [52] = 52, + [53] = 52, + [54] = 48, + [55] = 18, + [56] = 51, + [57] = 4, + [58] = 47, + [59] = 30, + [60] = 40, + [61] = 43, + [62] = 62, + [63] = 62, [64] = 64, - [65] = 64, + [65] = 62, [66] = 66, - [67] = 64, - [68] = 66, - [69] = 64, - [70] = 64, - [71] = 71, - [72] = 64, - [73] = 64, - [74] = 64, + [67] = 62, + [68] = 62, + [69] = 62, + [70] = 62, + [71] = 64, + [72] = 62, + [73] = 73, + [74] = 73, [75] = 75, [76] = 75, [77] = 77, [78] = 78, - [79] = 79, - [80] = 79, - [81] = 78, - [82] = 82, - [83] = 82, - [84] = 77, + [79] = 78, + [80] = 77, + [81] = 81, + [82] = 81, + [83] = 83, + [84] = 83, [85] = 85, [86] = 85, [87] = 87, - [88] = 87, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, [92] = 92, [93] = 93, - [94] = 94, - [95] = 95, + [94] = 92, + [95] = 90, [96] = 96, - [97] = 97, + [97] = 91, [98] = 98, - [99] = 92, - [100] = 91, + [99] = 87, + [100] = 100, [101] = 101, [102] = 102, - [103] = 90, + [103] = 103, [104] = 104, [105] = 105, [106] = 106, - [107] = 107, + [107] = 88, [108] = 108, - [109] = 109, - [110] = 108, - [111] = 111, + [109] = 106, + [110] = 96, + [111] = 104, [112] = 112, [113] = 113, [114] = 114, - [115] = 115, + [115] = 101, [116] = 116, - [117] = 117, - [118] = 113, - [119] = 117, - [120] = 120, - [121] = 112, + [117] = 100, + [118] = 118, + [119] = 118, + [120] = 108, + [121] = 113, [122] = 122, [123] = 123, - [124] = 107, + [124] = 116, [125] = 125, - [126] = 94, - [127] = 98, - [128] = 104, - [129] = 122, - [130] = 115, - [131] = 114, - [132] = 97, - [133] = 125, - [134] = 93, - [135] = 95, - [136] = 116, - [137] = 102, - [138] = 96, - [139] = 139, - [140] = 139, - [141] = 141, - [142] = 142, - [143] = 141, - [144] = 142, - [145] = 142, - [146] = 141, - [147] = 141, - [148] = 142, - [149] = 142, - [150] = 141, - [151] = 141, - [152] = 142, - [153] = 141, - [154] = 142, - [155] = 142, - [156] = 141, + [126] = 122, + [127] = 102, + [128] = 93, + [129] = 123, + [130] = 130, + [131] = 98, + [132] = 132, + [133] = 114, + [134] = 112, + [135] = 135, + [136] = 89, + [137] = 137, + [138] = 138, + [139] = 138, + [140] = 137, + [141] = 137, + [142] = 138, + [143] = 137, + [144] = 137, + [145] = 138, + [146] = 137, + [147] = 138, + [148] = 137, + [149] = 137, + [150] = 138, + [151] = 138, + [152] = 138, + [153] = 153, + [154] = 154, + [155] = 154, + [156] = 156, [157] = 157, [158] = 158, - [159] = 158, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 158, - [164] = 160, - [165] = 160, - [166] = 161, - [167] = 160, - [168] = 168, - [169] = 161, - [170] = 162, - [171] = 161, - [172] = 161, - [173] = 173, - [174] = 162, - [175] = 161, - [176] = 158, - [177] = 173, - [178] = 158, - [179] = 161, - [180] = 160, - [181] = 162, - [182] = 173, - [183] = 168, - [184] = 184, - [185] = 162, - [186] = 161, - [187] = 160, - [188] = 162, - [189] = 162, - [190] = 162, - [191] = 160, - [192] = 184, - [193] = 193, - [194] = 194, + [159] = 156, + [160] = 154, + [161] = 156, + [162] = 157, + [163] = 157, + [164] = 157, + [165] = 165, + [166] = 166, + [167] = 158, + [168] = 156, + [169] = 157, + [170] = 158, + [171] = 154, + [172] = 158, + [173] = 156, + [174] = 174, + [175] = 157, + [176] = 166, + [177] = 165, + [178] = 156, + [179] = 157, + [180] = 157, + [181] = 158, + [182] = 166, + [183] = 154, + [184] = 158, + [185] = 158, + [186] = 158, + [187] = 174, + [188] = 156, + [189] = 189, + [190] = 189, + [191] = 191, + [192] = 189, + [193] = 189, + [194] = 191, [195] = 195, [196] = 195, [197] = 197, - [198] = 193, - [199] = 193, - [200] = 194, - [201] = 194, - [202] = 194, - [203] = 194, - [204] = 195, - [205] = 195, - [206] = 195, + [198] = 195, + [199] = 191, + [200] = 191, + [201] = 189, + [202] = 195, + [203] = 203, + [204] = 189, + [205] = 191, + [206] = 197, [207] = 207, - [208] = 194, - [209] = 194, - [210] = 193, - [211] = 193, - [212] = 193, - [213] = 194, - [214] = 193, - [215] = 194, - [216] = 194, + [208] = 195, + [209] = 189, + [210] = 195, + [211] = 195, + [212] = 191, + [213] = 195, + [214] = 195, + [215] = 191, + [216] = 216, [217] = 195, - [218] = 193, - [219] = 195, - [220] = 195, - [221] = 221, + [218] = 189, + [219] = 189, + [220] = 191, + [221] = 195, [222] = 222, - [223] = 197, - [224] = 195, - [225] = 194, + [223] = 223, + [224] = 224, + [225] = 224, [226] = 226, [227] = 227, [228] = 228, - [229] = 228, - [230] = 230, + [229] = 229, + [230] = 226, [231] = 231, [232] = 232, - [233] = 233, - [234] = 234, - [235] = 234, - [236] = 236, + [233] = 226, + [234] = 222, + [235] = 235, + [236] = 226, [237] = 237, - [238] = 238, + [238] = 231, [239] = 239, [240] = 226, - [241] = 241, - [242] = 227, - [243] = 232, - [244] = 237, - [245] = 237, - [246] = 246, + [241] = 229, + [242] = 226, + [243] = 239, + [244] = 228, + [245] = 245, + [246] = 223, [247] = 237, - [248] = 237, - [249] = 249, - [250] = 234, + [248] = 226, + [249] = 228, + [250] = 229, [251] = 251, - [252] = 230, - [253] = 238, - [254] = 237, - [255] = 230, - [256] = 237, - [257] = 231, - [258] = 233, - [259] = 246, - [260] = 237, - [261] = 234, - [262] = 232, + [252] = 252, + [253] = 232, + [254] = 228, + [255] = 229, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 239, + [260] = 239, + [261] = 235, + [262] = 226, [263] = 263, - [264] = 230, + [264] = 264, [265] = 265, - [266] = 232, + [266] = 266, [267] = 267, - [268] = 268, - [269] = 269, + [268] = 266, + [269] = 265, [270] = 270, - [271] = 269, - [272] = 272, - [273] = 272, - [274] = 274, - [275] = 268, - [276] = 269, - [277] = 272, - [278] = 269, - [279] = 272, - [280] = 270, - [281] = 281, - [282] = 282, - [283] = 270, - [284] = 270, - [285] = 269, - [286] = 269, - [287] = 282, - [288] = 274, - [289] = 272, - [290] = 270, - [291] = 282, - [292] = 281, - [293] = 282, - [294] = 268, - [295] = 272, - [296] = 274, - [297] = 272, - [298] = 269, - [299] = 270, - [300] = 274, - [301] = 282, - [302] = 274, - [303] = 268, - [304] = 281, - [305] = 270, - [306] = 269, - [307] = 272, - [308] = 281, - [309] = 268, - [310] = 281, - [311] = 274, - [312] = 282, - [313] = 268, - [314] = 274, - [315] = 282, - [316] = 270, - [317] = 268, - [318] = 282, - [319] = 281, - [320] = 268, - [321] = 274, - [322] = 184, - [323] = 323, + [271] = 271, + [272] = 271, + [273] = 267, + [274] = 265, + [275] = 265, + [276] = 264, + [277] = 265, + [278] = 278, + [279] = 271, + [280] = 271, + [281] = 271, + [282] = 278, + [283] = 265, + [284] = 278, + [285] = 264, + [286] = 264, + [287] = 278, + [288] = 267, + [289] = 278, + [290] = 271, + [291] = 266, + [292] = 266, + [293] = 270, + [294] = 270, + [295] = 264, + [296] = 278, + [297] = 267, + [298] = 266, + [299] = 278, + [300] = 271, + [301] = 265, + [302] = 270, + [303] = 264, + [304] = 278, + [305] = 267, + [306] = 270, + [307] = 266, + [308] = 270, + [309] = 266, + [310] = 267, + [311] = 264, + [312] = 270, + [313] = 266, + [314] = 264, + [315] = 270, + [316] = 271, + [317] = 265, + [318] = 318, + [319] = 319, + [320] = 318, + [321] = 321, + [322] = 319, + [323] = 318, [324] = 324, - [325] = 323, - [326] = 324, + [325] = 325, + [326] = 326, [327] = 327, - [328] = 328, - [329] = 329, - [330] = 328, + [328] = 319, + [329] = 321, + [330] = 321, [331] = 331, - [332] = 332, - [333] = 328, - [334] = 327, + [332] = 325, + [333] = 325, + [334] = 326, [335] = 327, - [336] = 336, - [337] = 337, - [338] = 323, - [339] = 336, - [340] = 337, - [341] = 336, - [342] = 324, - [343] = 337, - [344] = 344, - [345] = 345, - [346] = 344, - [347] = 347, - [348] = 348, - [349] = 347, - [350] = 347, - [351] = 267, - [352] = 345, - [353] = 267, - [354] = 344, - [355] = 344, - [356] = 347, - [357] = 345, - [358] = 347, - [359] = 347, - [360] = 344, - [361] = 267, - [362] = 344, - [363] = 347, - [364] = 347, - [365] = 344, - [366] = 344, - [367] = 367, + [336] = 326, + [337] = 327, + [338] = 338, + [339] = 174, + [340] = 340, + [341] = 341, + [342] = 341, + [343] = 341, + [344] = 258, + [345] = 340, + [346] = 340, + [347] = 340, + [348] = 340, + [349] = 349, + [350] = 349, + [351] = 341, + [352] = 340, + [353] = 340, + [354] = 341, + [355] = 341, + [356] = 341, + [357] = 258, + [358] = 341, + [359] = 258, + [360] = 360, + [361] = 340, + [362] = 349, + [363] = 363, + [364] = 363, + [365] = 365, + [366] = 366, + [367] = 363, [368] = 368, - [369] = 369, - [370] = 369, - [371] = 367, - [372] = 367, - [373] = 368, - [374] = 160, - [375] = 369, - [376] = 369, - [377] = 369, - [378] = 367, - [379] = 379, - [380] = 380, - [381] = 367, - [382] = 332, - [383] = 369, - [384] = 368, - [385] = 385, - [386] = 368, - [387] = 387, - [388] = 368, - [389] = 369, - [390] = 368, - [391] = 367, - [392] = 369, - [393] = 393, - [394] = 368, - [395] = 367, - [396] = 368, - [397] = 368, - [398] = 367, - [399] = 369, - [400] = 400, - [401] = 367, - [402] = 369, - [403] = 329, - [404] = 367, - [405] = 368, + [369] = 366, + [370] = 365, + [371] = 365, + [372] = 365, + [373] = 373, + [374] = 365, + [375] = 375, + [376] = 376, + [377] = 365, + [378] = 366, + [379] = 363, + [380] = 366, + [381] = 365, + [382] = 324, + [383] = 363, + [384] = 366, + [385] = 363, + [386] = 338, + [387] = 363, + [388] = 388, + [389] = 366, + [390] = 366, + [391] = 366, + [392] = 363, + [393] = 365, + [394] = 363, + [395] = 366, + [396] = 365, + [397] = 156, + [398] = 363, + [399] = 366, + [400] = 365, + [401] = 401, + [402] = 324, + [403] = 403, + [404] = 156, + [405] = 405, [406] = 406, - [407] = 407, - [408] = 184, + [407] = 405, + [408] = 403, [409] = 409, - [410] = 409, - [411] = 411, + [410] = 403, + [411] = 174, [412] = 412, [413] = 413, [414] = 414, - [415] = 415, - [416] = 416, + [415] = 338, + [416] = 412, [417] = 417, [418] = 418, - [419] = 419, + [419] = 338, [420] = 420, - [421] = 329, - [422] = 422, - [423] = 418, - [424] = 409, + [421] = 405, + [422] = 401, + [423] = 423, + [424] = 424, [425] = 425, - [426] = 409, + [426] = 324, [427] = 427, [428] = 428, - [429] = 428, - [430] = 332, - [431] = 431, - [432] = 422, - [433] = 409, - [434] = 407, - [435] = 380, - [436] = 184, - [437] = 409, - [438] = 407, - [439] = 329, - [440] = 409, - [441] = 409, - [442] = 409, - [443] = 443, - [444] = 416, - [445] = 332, + [429] = 401, + [430] = 427, + [431] = 420, + [432] = 373, + [433] = 433, + [434] = 418, + [435] = 435, + [436] = 436, + [437] = 427, + [438] = 427, + [439] = 427, + [440] = 427, + [441] = 174, + [442] = 427, + [443] = 435, + [444] = 435, + [445] = 427, [446] = 446, - [447] = 447, + [447] = 427, [448] = 448, - [449] = 418, - [450] = 446, - [451] = 451, - [452] = 184, - [453] = 160, - [454] = 420, - [455] = 422, - [456] = 420, - [457] = 409, - [458] = 428, - [459] = 459, + [449] = 174, + [450] = 450, + [451] = 412, + [452] = 427, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 454, + [457] = 457, + [458] = 458, + [459] = 453, [460] = 460, - [461] = 329, + [461] = 455, [462] = 462, - [463] = 460, + [463] = 457, [464] = 464, - [465] = 462, - [466] = 466, + [465] = 338, + [466] = 324, [467] = 467, - [468] = 467, - [469] = 469, - [470] = 470, - [471] = 459, - [472] = 466, - [473] = 332, + [468] = 460, + [469] = 462, + [470] = 464, + [471] = 458, + [472] = 472, + [473] = 473, [474] = 474, - [475] = 470, - [476] = 464, - [477] = 469, + [475] = 475, + [476] = 476, + [477] = 477, [478] = 478, [479] = 479, - [480] = 480, + [480] = 473, [481] = 481, [482] = 482, - [483] = 478, - [484] = 484, + [483] = 483, + [484] = 474, [485] = 485, [486] = 486, - [487] = 479, - [488] = 485, - [489] = 482, - [490] = 490, + [487] = 487, + [488] = 477, + [489] = 489, + [490] = 472, [491] = 491, - [492] = 485, - [493] = 493, - [494] = 494, + [492] = 487, + [493] = 479, + [494] = 481, [495] = 495, - [496] = 478, - [497] = 486, - [498] = 485, - [499] = 490, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 472, [500] = 491, [501] = 501, - [502] = 502, - [503] = 478, + [502] = 489, + [503] = 491, [504] = 504, - [505] = 505, - [506] = 495, + [505] = 472, + [506] = 482, [507] = 507, - [508] = 482, - [509] = 486, - [510] = 510, - [511] = 490, + [508] = 472, + [509] = 481, + [510] = 497, + [511] = 483, [512] = 512, - [513] = 491, - [514] = 514, - [515] = 514, + [513] = 496, + [514] = 504, + [515] = 477, [516] = 516, - [517] = 484, - [518] = 482, - [519] = 495, - [520] = 520, - [521] = 479, - [522] = 522, - [523] = 495, - [524] = 514, - [525] = 522, - [526] = 526, - [527] = 527, + [517] = 474, + [518] = 518, + [519] = 477, + [520] = 478, + [521] = 507, + [522] = 487, + [523] = 523, + [524] = 486, + [525] = 482, + [526] = 472, + [527] = 477, [528] = 528, - [529] = 522, - [530] = 530, - [531] = 484, - [532] = 482, - [533] = 514, - [534] = 534, + [529] = 529, + [530] = 482, + [531] = 531, + [532] = 532, + [533] = 474, + [534] = 485, [535] = 479, - [536] = 536, - [537] = 514, - [538] = 538, - [539] = 479, - [540] = 540, - [541] = 479, - [542] = 484, - [543] = 543, - [544] = 543, - [545] = 480, - [546] = 534, - [547] = 479, - [548] = 516, - [549] = 479, - [550] = 538, - [551] = 551, - [552] = 495, - [553] = 484, - [554] = 501, - [555] = 514, - [556] = 514, - [557] = 557, - [558] = 491, - [559] = 490, - [560] = 486, - [561] = 561, - [562] = 491, - [563] = 478, - [564] = 490, - [565] = 486, - [566] = 485, - [567] = 482, - [568] = 568, - [569] = 522, - [570] = 478, - [571] = 536, - [572] = 512, - [573] = 485, - [574] = 495, - [575] = 516, - [576] = 495, - [577] = 577, - [578] = 485, - [579] = 516, - [580] = 551, - [581] = 494, - [582] = 484, - [583] = 514, - [584] = 491, - [585] = 490, - [586] = 482, - [587] = 587, - [588] = 486, - [589] = 561, - [590] = 590, - [591] = 495, - [592] = 482, - [593] = 568, - [594] = 490, - [595] = 536, - [596] = 485, - [597] = 522, - [598] = 491, - [599] = 490, - [600] = 486, - [601] = 557, - [602] = 491, - [603] = 527, - [604] = 528, - [605] = 478, - [606] = 486, - [607] = 536, - [608] = 478, + [536] = 496, + [537] = 479, + [538] = 473, + [539] = 473, + [540] = 477, + [541] = 483, + [542] = 474, + [543] = 497, + [544] = 478, + [545] = 532, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 473, + [550] = 482, + [551] = 528, + [552] = 552, + [553] = 553, + [554] = 529, + [555] = 497, + [556] = 483, + [557] = 548, + [558] = 558, + [559] = 491, + [560] = 478, + [561] = 523, + [562] = 477, + [563] = 496, + [564] = 487, + [565] = 497, + [566] = 479, + [567] = 474, + [568] = 472, + [569] = 552, + [570] = 487, + [571] = 518, + [572] = 553, + [573] = 496, + [574] = 496, + [575] = 477, + [576] = 496, + [577] = 473, + [578] = 473, + [579] = 474, + [580] = 479, + [581] = 482, + [582] = 497, + [583] = 478, + [584] = 478, + [585] = 585, + [586] = 479, + [587] = 472, + [588] = 482, + [589] = 491, + [590] = 497, + [591] = 481, + [592] = 496, + [593] = 478, + [594] = 482, + [595] = 491, + [596] = 474, + [597] = 479, + [598] = 497, + [599] = 478, + [600] = 473, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 604, + [608] = 605, [609] = 609, - [610] = 610, + [610] = 609, [611] = 611, [612] = 612, [613] = 613, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, + [614] = 606, + [615] = 613, + [616] = 611, + [617] = 602, [618] = 618, [619] = 619, - [620] = 618, - [621] = 617, - [622] = 614, - [623] = 615, - [624] = 611, - [625] = 616, - [626] = 613, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, [627] = 627, [628] = 628, - [629] = 629, - [630] = 628, - [631] = 631, - [632] = 629, - [633] = 633, - [634] = 634, + [629] = 621, + [630] = 630, + [631] = 627, + [632] = 632, + [633] = 619, + [634] = 626, [635] = 635, [636] = 636, - [637] = 634, - [638] = 633, + [637] = 637, + [638] = 632, [639] = 639, [640] = 640, [641] = 641, - [642] = 631, - [643] = 643, + [642] = 642, + [643] = 642, [644] = 644, [645] = 645, [646] = 646, [647] = 647, [648] = 648, - [649] = 648, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, + [649] = 649, + [650] = 648, + [651] = 223, + [652] = 642, + [653] = 645, [654] = 654, - [655] = 648, - [656] = 656, - [657] = 652, + [655] = 647, + [656] = 644, + [657] = 657, [658] = 658, - [659] = 656, - [660] = 660, - [661] = 661, - [662] = 658, - [663] = 651, - [664] = 664, - [665] = 650, - [666] = 653, - [667] = 650, - [668] = 227, - [669] = 669, - [670] = 670, - [671] = 658, - [672] = 664, - [673] = 673, - [674] = 674, - [675] = 653, - [676] = 674, - [677] = 654, - [678] = 226, - [679] = 670, + [659] = 641, + [660] = 646, + [661] = 641, + [662] = 641, + [663] = 642, + [664] = 654, + [665] = 649, + [666] = 639, + [667] = 642, + [668] = 649, + [669] = 640, + [670] = 654, + [671] = 671, + [672] = 649, + [673] = 649, + [674] = 639, + [675] = 654, + [676] = 639, + [677] = 222, + [678] = 654, + [679] = 679, [680] = 658, - [681] = 651, - [682] = 650, - [683] = 660, - [684] = 653, - [685] = 661, - [686] = 648, - [687] = 653, - [688] = 669, - [689] = 658, - [690] = 648, - [691] = 651, - [692] = 651, - [693] = 650, - [694] = 650, - [695] = 673, - [696] = 651, - [697] = 653, - [698] = 658, - [699] = 648, + [681] = 639, + [682] = 649, + [683] = 671, + [684] = 654, + [685] = 657, + [686] = 679, + [687] = 641, + [688] = 642, + [689] = 639, + [690] = 641, + [691] = 691, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 691, + [696] = 692, + [697] = 697, + [698] = 698, + [699] = 699, [700] = 700, [701] = 701, - [702] = 702, - [703] = 703, - [704] = 700, - [705] = 705, - [706] = 706, - [707] = 706, - [708] = 708, - [709] = 708, - [710] = 710, - [711] = 711, - [712] = 712, + [702] = 701, + [703] = 698, + [704] = 704, + [705] = 699, + [706] = 697, + [707] = 694, + [708] = 704, + [709] = 709, + [710] = 693, + [711] = 709, + [712] = 700, [713] = 713, - [714] = 712, - [715] = 702, - [716] = 703, - [717] = 713, - [718] = 711, - [719] = 701, - [720] = 705, - [721] = 710, + [714] = 714, + [715] = 715, + [716] = 713, + [717] = 715, + [718] = 714, + [719] = 719, + [720] = 720, + [721] = 721, [722] = 722, [723] = 723, - [724] = 723, + [724] = 724, [725] = 725, - [726] = 722, - [727] = 725, + [726] = 726, + [727] = 727, [728] = 728, - [729] = 729, + [729] = 720, [730] = 730, [731] = 731, [732] = 732, - [733] = 733, + [733] = 722, [734] = 734, [735] = 735, - [736] = 226, + [736] = 736, [737] = 737, [738] = 738, [739] = 739, @@ -3489,20 +3516,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [741] = 741, [742] = 742, [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, + [744] = 730, + [745] = 743, + [746] = 742, + [747] = 741, + [748] = 222, [749] = 749, - [750] = 750, - [751] = 751, + [750] = 725, + [751] = 726, [752] = 752, - [753] = 753, + [753] = 724, [754] = 754, - [755] = 755, + [755] = 725, [756] = 756, - [757] = 729, + [757] = 757, [758] = 758, [759] = 759, [760] = 760, @@ -3510,1784 +3537,2060 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [762] = 762, [763] = 763, [764] = 764, - [765] = 765, - [766] = 766, + [765] = 734, + [766] = 735, [767] = 767, - [768] = 768, + [768] = 737, [769] = 769, - [770] = 770, + [770] = 738, [771] = 771, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 776, - [778] = 770, - [779] = 753, - [780] = 751, - [781] = 747, - [782] = 782, - [783] = 775, + [772] = 736, + [773] = 739, + [774] = 769, + [775] = 740, + [776] = 749, + [777] = 752, + [778] = 756, + [779] = 757, + [780] = 780, + [781] = 781, + [782] = 758, + [783] = 783, [784] = 784, [785] = 785, - [786] = 746, - [787] = 771, + [786] = 786, + [787] = 784, [788] = 788, [789] = 789, - [790] = 769, - [791] = 774, - [792] = 772, - [793] = 793, - [794] = 768, - [795] = 760, - [796] = 767, - [797] = 797, - [798] = 728, - [799] = 756, + [790] = 790, + [791] = 791, + [792] = 785, + [793] = 771, + [794] = 794, + [795] = 790, + [796] = 789, + [797] = 786, + [798] = 798, + [799] = 799, [800] = 800, - [801] = 801, + [801] = 223, [802] = 802, - [803] = 803, + [803] = 783, [804] = 804, - [805] = 802, - [806] = 782, - [807] = 784, - [808] = 804, - [809] = 759, - [810] = 766, + [805] = 805, + [806] = 806, + [807] = 807, + [808] = 764, + [809] = 763, + [810] = 719, [811] = 762, - [812] = 743, - [813] = 742, - [814] = 789, - [815] = 765, - [816] = 764, - [817] = 741, - [818] = 818, - [819] = 763, - [820] = 734, - [821] = 740, - [822] = 744, - [823] = 730, - [824] = 754, - [825] = 755, - [826] = 761, - [827] = 737, - [828] = 227, - [829] = 738, - [830] = 739, - [831] = 752, - [832] = 745, - [833] = 758, - [834] = 788, - [835] = 789, - [836] = 804, - [837] = 750, - [838] = 749, - [839] = 748, - [840] = 735, - [841] = 800, - [842] = 793, - [843] = 733, - [844] = 801, - [845] = 785, - [846] = 773, - [847] = 732, - [848] = 731, - [849] = 818, - [850] = 803, - [851] = 797, - [852] = 852, - [853] = 852, - [854] = 852, - [855] = 852, - [856] = 852, - [857] = 852, - [858] = 858, - [859] = 858, + [812] = 761, + [813] = 794, + [814] = 760, + [815] = 788, + [816] = 759, + [817] = 817, + [818] = 780, + [819] = 819, + [820] = 819, + [821] = 817, + [822] = 798, + [823] = 767, + [824] = 799, + [825] = 807, + [826] = 791, + [827] = 800, + [828] = 754, + [829] = 829, + [830] = 806, + [831] = 802, + [832] = 728, + [833] = 805, + [834] = 781, + [835] = 727, + [836] = 726, + [837] = 721, + [838] = 804, + [839] = 829, + [840] = 723, + [841] = 732, + [842] = 731, + [843] = 843, + [844] = 843, + [845] = 843, + [846] = 843, + [847] = 843, + [848] = 843, + [849] = 849, + [850] = 849, + [851] = 851, + [852] = 851, + [853] = 851, + [854] = 851, + [855] = 851, + [856] = 851, + [857] = 851, + [858] = 851, + [859] = 859, [860] = 860, - [861] = 860, - [862] = 860, - [863] = 860, - [864] = 860, - [865] = 860, - [866] = 860, - [867] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 859, + [867] = 867, [868] = 868, - [869] = 868, + [869] = 864, [870] = 870, - [871] = 871, + [871] = 859, [872] = 872, - [873] = 873, - [874] = 874, - [875] = 871, - [876] = 876, - [877] = 877, - [878] = 868, - [879] = 879, + [873] = 860, + [874] = 864, + [875] = 875, + [876] = 862, + [877] = 864, + [878] = 863, + [879] = 865, [880] = 880, - [881] = 881, - [882] = 876, - [883] = 883, - [884] = 877, - [885] = 885, - [886] = 873, + [881] = 861, + [882] = 868, + [883] = 860, + [884] = 870, + [885] = 859, + [886] = 872, [887] = 868, - [888] = 871, - [889] = 876, - [890] = 877, - [891] = 874, - [892] = 877, - [893] = 879, - [894] = 880, - [895] = 873, - [896] = 881, - [897] = 885, - [898] = 874, - [899] = 870, - [900] = 879, - [901] = 877, - [902] = 868, - [903] = 868, - [904] = 880, - [905] = 873, - [906] = 906, - [907] = 874, - [908] = 879, - [909] = 881, - [910] = 885, - [911] = 872, - [912] = 870, - [913] = 872, - [914] = 880, - [915] = 873, - [916] = 870, - [917] = 883, - [918] = 873, - [919] = 874, - [920] = 870, - [921] = 872, - [922] = 876, - [923] = 881, - [924] = 873, - [925] = 873, - [926] = 883, - [927] = 906, - [928] = 879, - [929] = 870, - [930] = 873, - [931] = 880, - [932] = 885, - [933] = 872, - [934] = 881, - [935] = 871, - [936] = 876, - [937] = 885, - [938] = 871, - [939] = 883, - [940] = 883, - [941] = 877, - [942] = 871, - [943] = 876, - [944] = 876, - [945] = 877, - [946] = 868, - [947] = 873, - [948] = 868, - [949] = 879, - [950] = 880, - [951] = 881, - [952] = 885, - [953] = 879, - [954] = 880, - [955] = 881, - [956] = 885, - [957] = 871, - [958] = 873, - [959] = 876, - [960] = 871, - [961] = 877, - [962] = 874, - [963] = 879, - [964] = 870, - [965] = 872, - [966] = 872, - [967] = 880, - [968] = 874, - [969] = 873, - [970] = 873, - [971] = 872, - [972] = 874, - [973] = 881, - [974] = 885, - [975] = 870, + [888] = 875, + [889] = 870, + [890] = 859, + [891] = 872, + [892] = 860, + [893] = 880, + [894] = 865, + [895] = 863, + [896] = 862, + [897] = 875, + [898] = 872, + [899] = 859, + [900] = 870, + [901] = 875, + [902] = 862, + [903] = 864, + [904] = 863, + [905] = 862, + [906] = 864, + [907] = 907, + [908] = 870, + [909] = 863, + [910] = 870, + [911] = 865, + [912] = 860, + [913] = 865, + [914] = 868, + [915] = 861, + [916] = 860, + [917] = 870, + [918] = 880, + [919] = 859, + [920] = 864, + [921] = 861, + [922] = 880, + [923] = 860, + [924] = 868, + [925] = 864, + [926] = 860, + [927] = 864, + [928] = 868, + [929] = 872, + [930] = 859, + [931] = 875, + [932] = 861, + [933] = 867, + [934] = 861, + [935] = 872, + [936] = 864, + [937] = 867, + [938] = 864, + [939] = 864, + [940] = 875, + [941] = 862, + [942] = 867, + [943] = 880, + [944] = 865, + [945] = 863, + [946] = 862, + [947] = 875, + [948] = 872, + [949] = 907, + [950] = 861, + [951] = 872, + [952] = 870, + [953] = 868, + [954] = 861, + [955] = 880, + [956] = 863, + [957] = 867, + [958] = 865, + [959] = 863, + [960] = 868, + [961] = 880, + [962] = 862, + [963] = 864, + [964] = 880, + [965] = 875, + [966] = 865, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 969, + [973] = 973, + [974] = 974, + [975] = 975, [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, + [977] = 968, + [978] = 967, + [979] = 969, [980] = 980, - [981] = 981, + [981] = 970, [982] = 982, [983] = 983, - [984] = 977, + [984] = 984, [985] = 985, [986] = 986, - [987] = 987, + [987] = 968, [988] = 988, - [989] = 978, - [990] = 976, - [991] = 979, - [992] = 979, - [993] = 993, - [994] = 994, - [995] = 976, - [996] = 996, - [997] = 997, - [998] = 978, - [999] = 977, + [989] = 967, + [990] = 970, + [991] = 970, + [992] = 967, + [993] = 970, + [994] = 967, + [995] = 967, + [996] = 971, + [997] = 970, + [998] = 969, + [999] = 999, [1000] = 1000, - [1001] = 997, - [1002] = 994, - [1003] = 640, - [1004] = 976, - [1005] = 986, - [1006] = 977, - [1007] = 993, - [1008] = 987, - [1009] = 988, - [1010] = 997, - [1011] = 996, - [1012] = 994, - [1013] = 982, - [1014] = 977, - [1015] = 993, - [1016] = 982, - [1017] = 1017, - [1018] = 985, + [1001] = 1001, + [1002] = 984, + [1003] = 967, + [1004] = 986, + [1005] = 1005, + [1006] = 969, + [1007] = 968, + [1008] = 969, + [1009] = 968, + [1010] = 969, + [1011] = 968, + [1012] = 637, + [1013] = 976, + [1014] = 635, + [1015] = 630, + [1016] = 985, + [1017] = 618, + [1018] = 628, [1019] = 980, - [1020] = 1020, - [1021] = 979, - [1022] = 996, - [1023] = 987, - [1024] = 978, - [1025] = 986, - [1026] = 976, - [1027] = 641, - [1028] = 1028, - [1029] = 645, - [1030] = 976, - [1031] = 643, - [1032] = 978, - [1033] = 981, - [1034] = 983, - [1035] = 979, - [1036] = 983, - [1037] = 979, - [1038] = 985, - [1039] = 981, - [1040] = 979, - [1041] = 635, - [1042] = 988, - [1043] = 977, - [1044] = 978, - [1045] = 976, - [1046] = 636, - [1047] = 978, - [1048] = 976, - [1049] = 980, - [1050] = 644, - [1051] = 1051, - [1052] = 977, - [1053] = 612, - [1054] = 981, - [1055] = 1055, - [1056] = 639, - [1057] = 978, - [1058] = 981, - [1059] = 986, - [1060] = 987, - [1061] = 1017, - [1062] = 976, + [1020] = 974, + [1021] = 973, + [1022] = 988, + [1023] = 636, + [1024] = 1024, + [1025] = 982, + [1026] = 983, + [1027] = 983, + [1028] = 984, + [1029] = 982, + [1030] = 985, + [1031] = 969, + [1032] = 976, + [1033] = 975, + [1034] = 968, + [1035] = 986, + [1036] = 971, + [1037] = 624, + [1038] = 975, + [1039] = 970, + [1040] = 988, + [1041] = 980, + [1042] = 973, + [1043] = 974, + [1044] = 1001, + [1045] = 618, + [1046] = 624, + [1047] = 1047, + [1048] = 971, + [1049] = 986, + [1050] = 1050, + [1051] = 976, + [1052] = 985, + [1053] = 984, + [1054] = 1054, + [1055] = 983, + [1056] = 974, + [1057] = 973, + [1058] = 1058, + [1059] = 982, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, [1063] = 1063, - [1064] = 983, - [1065] = 1020, - [1066] = 1066, + [1064] = 1064, + [1065] = 999, + [1066] = 975, [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1028, - [1071] = 980, - [1072] = 997, - [1073] = 985, - [1074] = 1074, - [1075] = 996, - [1076] = 1076, - [1077] = 994, - [1078] = 1078, - [1079] = 1079, - [1080] = 644, - [1081] = 1081, - [1082] = 643, - [1083] = 982, - [1084] = 993, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 986, - [1093] = 987, - [1094] = 994, - [1095] = 977, - [1096] = 645, - [1097] = 641, - [1098] = 640, - [1099] = 1099, - [1100] = 1100, - [1101] = 996, - [1102] = 1102, - [1103] = 1103, - [1104] = 997, - [1105] = 1105, - [1106] = 1106, - [1107] = 618, - [1108] = 619, - [1109] = 1109, - [1110] = 647, - [1111] = 646, - [1112] = 988, + [1068] = 975, + [1069] = 982, + [1070] = 983, + [1071] = 984, + [1072] = 985, + [1073] = 976, + [1074] = 986, + [1075] = 971, + [1076] = 1024, + [1077] = 1077, + [1078] = 980, + [1079] = 975, + [1080] = 974, + [1081] = 982, + [1082] = 988, + [1083] = 969, + [1084] = 636, + [1085] = 973, + [1086] = 973, + [1087] = 974, + [1088] = 983, + [1089] = 628, + [1090] = 630, + [1091] = 1005, + [1092] = 1092, + [1093] = 1001, + [1094] = 1094, + [1095] = 1000, + [1096] = 980, + [1097] = 1097, + [1098] = 1000, + [1099] = 635, + [1100] = 622, + [1101] = 623, + [1102] = 637, + [1103] = 988, + [1104] = 975, + [1105] = 982, + [1106] = 612, + [1107] = 613, + [1108] = 980, + [1109] = 983, + [1110] = 984, + [1111] = 1111, + [1112] = 985, [1113] = 1113, - [1114] = 993, - [1115] = 1017, - [1116] = 1020, - [1117] = 1028, - [1118] = 1118, - [1119] = 986, - [1120] = 987, - [1121] = 635, + [1114] = 1024, + [1115] = 976, + [1116] = 986, + [1117] = 971, + [1118] = 984, + [1119] = 1005, + [1120] = 985, + [1121] = 1121, [1122] = 1122, - [1123] = 1051, - [1124] = 982, - [1125] = 985, + [1123] = 1123, + [1124] = 988, + [1125] = 1125, [1126] = 1126, - [1127] = 1127, - [1128] = 988, - [1129] = 997, - [1130] = 983, - [1131] = 996, - [1132] = 994, - [1133] = 981, - [1134] = 993, - [1135] = 981, - [1136] = 988, - [1137] = 980, - [1138] = 1051, - [1139] = 982, - [1140] = 1063, - [1141] = 985, - [1142] = 979, - [1143] = 980, - [1144] = 983, - [1145] = 980, - [1146] = 985, - [1147] = 982, - [1148] = 993, - [1149] = 987, - [1150] = 983, - [1151] = 994, - [1152] = 996, - [1153] = 997, - [1154] = 988, - [1155] = 986, - [1156] = 636, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 1000, - [1161] = 1000, - [1162] = 1099, - [1163] = 1067, - [1164] = 1068, - [1165] = 1106, - [1166] = 1109, - [1167] = 1067, - [1168] = 1122, - [1169] = 1113, - [1170] = 618, - [1171] = 1066, - [1172] = 1078, - [1173] = 634, - [1174] = 1076, - [1175] = 1074, - [1176] = 1126, - [1177] = 1051, - [1178] = 1028, - [1179] = 1020, - [1180] = 1017, - [1181] = 1127, - [1182] = 646, - [1183] = 647, - [1184] = 633, - [1185] = 1000, - [1186] = 631, - [1187] = 976, - [1188] = 628, - [1189] = 986, - [1190] = 987, - [1191] = 1103, - [1192] = 1157, - [1193] = 1055, - [1194] = 639, - [1195] = 1102, - [1196] = 1100, - [1197] = 1051, - [1198] = 1099, - [1199] = 1088, - [1200] = 1087, - [1201] = 1086, - [1202] = 647, - [1203] = 646, - [1204] = 1085, - [1205] = 1069, - [1206] = 1159, - [1207] = 1051, - [1208] = 1081, - [1209] = 1079, - [1210] = 980, - [1211] = 985, - [1212] = 982, - [1213] = 993, - [1214] = 994, - [1215] = 996, - [1216] = 997, - [1217] = 1081, - [1218] = 988, - [1219] = 1079, - [1220] = 1085, - [1221] = 1086, - [1222] = 1087, - [1223] = 1069, - [1224] = 1068, - [1225] = 1105, - [1226] = 1066, - [1227] = 612, - [1228] = 1028, - [1229] = 639, - [1230] = 1020, - [1231] = 1088, - [1232] = 1017, - [1233] = 1063, - [1234] = 1028, - [1235] = 1020, - [1236] = 1113, - [1237] = 1122, - [1238] = 1017, - [1239] = 1118, - [1240] = 636, - [1241] = 619, - [1242] = 1028, - [1243] = 1000, - [1244] = 618, - [1245] = 1100, - [1246] = 1102, - [1247] = 1051, - [1248] = 612, - [1249] = 1103, - [1250] = 635, - [1251] = 1105, - [1252] = 1106, - [1253] = 1109, - [1254] = 1000, - [1255] = 1078, - [1256] = 1076, - [1257] = 640, - [1258] = 641, - [1259] = 981, - [1260] = 645, - [1261] = 983, - [1262] = 1159, - [1263] = 1158, - [1264] = 1158, - [1265] = 1157, - [1266] = 1074, - [1267] = 1063, - [1268] = 644, - [1269] = 643, - [1270] = 976, - [1271] = 1126, - [1272] = 1118, - [1273] = 640, - [1274] = 644, - [1275] = 643, - [1276] = 636, - [1277] = 639, - [1278] = 645, - [1279] = 635, - [1280] = 1127, - [1281] = 1000, - [1282] = 1055, - [1283] = 619, - [1284] = 976, - [1285] = 641, - [1286] = 1017, - [1287] = 1020, - [1288] = 1051, - [1289] = 643, - [1290] = 1091, - [1291] = 1055, - [1292] = 1090, - [1293] = 1089, - [1294] = 628, - [1295] = 1088, - [1296] = 631, - [1297] = 633, - [1298] = 1055, - [1299] = 1127, - [1300] = 1118, - [1301] = 644, - [1302] = 1127, - [1303] = 1126, - [1304] = 634, - [1305] = 1066, - [1306] = 1067, - [1307] = 1074, - [1308] = 1076, - [1309] = 1068, - [1310] = 1078, - [1311] = 1087, - [1312] = 1086, - [1313] = 1109, - [1314] = 1106, - [1315] = 1105, - [1316] = 1103, - [1317] = 1102, - [1318] = 1100, - [1319] = 1099, - [1320] = 1085, - [1321] = 1088, - [1322] = 1069, - [1323] = 643, - [1324] = 1118, - [1325] = 1127, - [1326] = 645, - [1327] = 641, - [1328] = 640, + [1127] = 603, + [1128] = 1128, + [1129] = 999, + [1130] = 976, + [1131] = 986, + [1132] = 971, + [1133] = 1133, + [1134] = 1134, + [1135] = 620, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 974, + [1142] = 973, + [1143] = 1143, + [1144] = 1113, + [1145] = 988, + [1146] = 980, + [1147] = 1147, + [1148] = 1148, + [1149] = 967, + [1150] = 970, + [1151] = 1151, + [1152] = 968, + [1153] = 983, + [1154] = 624, + [1155] = 1047, + [1156] = 1151, + [1157] = 1128, + [1158] = 1024, + [1159] = 1067, + [1160] = 1139, + [1161] = 1138, + [1162] = 1136, + [1163] = 1064, + [1164] = 1063, + [1165] = 1134, + [1166] = 1133, + [1167] = 603, + [1168] = 1126, + [1169] = 1123, + [1170] = 627, + [1171] = 1128, + [1172] = 636, + [1173] = 1050, + [1174] = 1005, + [1175] = 1005, + [1176] = 1001, + [1177] = 1000, + [1178] = 1054, + [1179] = 1058, + [1180] = 1001, + [1181] = 999, + [1182] = 1000, + [1183] = 1147, + [1184] = 1140, + [1185] = 1047, + [1186] = 1111, + [1187] = 622, + [1188] = 613, + [1189] = 612, + [1190] = 969, + [1191] = 1121, + [1192] = 1122, + [1193] = 980, + [1194] = 1060, + [1195] = 1122, + [1196] = 603, + [1197] = 988, + [1198] = 1137, + [1199] = 1000, + [1200] = 1113, + [1201] = 1001, + [1202] = 1005, + [1203] = 1143, + [1204] = 999, + [1205] = 637, + [1206] = 1148, + [1207] = 982, + [1208] = 1148, + [1209] = 971, + [1210] = 986, + [1211] = 976, + [1212] = 985, + [1213] = 984, + [1214] = 1125, + [1215] = 1062, + [1216] = 1061, + [1217] = 635, + [1218] = 1125, + [1219] = 975, + [1220] = 1067, + [1221] = 969, + [1222] = 1113, + [1223] = 1024, + [1224] = 1126, + [1225] = 1151, + [1226] = 973, + [1227] = 1062, + [1228] = 1061, + [1229] = 1060, + [1230] = 974, + [1231] = 1005, + [1232] = 1121, + [1233] = 612, + [1234] = 613, + [1235] = 1077, + [1236] = 1111, + [1237] = 620, + [1238] = 1024, + [1239] = 999, + [1240] = 1143, + [1241] = 623, + [1242] = 626, + [1243] = 624, + [1244] = 630, + [1245] = 618, + [1246] = 628, + [1247] = 1001, + [1248] = 619, + [1249] = 1000, + [1250] = 999, + [1251] = 632, + [1252] = 1137, + [1253] = 622, + [1254] = 1123, + [1255] = 1024, + [1256] = 620, + [1257] = 620, + [1258] = 1077, + [1259] = 1140, + [1260] = 636, + [1261] = 1147, + [1262] = 1058, + [1263] = 1054, + [1264] = 1050, + [1265] = 1133, + [1266] = 1134, + [1267] = 623, + [1268] = 1064, + [1269] = 1063, + [1270] = 628, + [1271] = 618, + [1272] = 1136, + [1273] = 1138, + [1274] = 1139, + [1275] = 630, + [1276] = 635, + [1277] = 637, + [1278] = 969, + [1279] = 1077, + [1280] = 1140, + [1281] = 1121, + [1282] = 1077, + [1283] = 1123, + [1284] = 632, + [1285] = 623, + [1286] = 627, + [1287] = 1111, + [1288] = 1121, + [1289] = 1122, + [1290] = 1151, + [1291] = 1126, + [1292] = 1128, + [1293] = 622, + [1294] = 620, + [1295] = 1063, + [1296] = 1111, + [1297] = 1064, + [1298] = 1123, + [1299] = 619, + [1300] = 1137, + [1301] = 626, + [1302] = 1143, + [1303] = 1077, + [1304] = 1077, + [1305] = 1305, + [1306] = 1306, + [1307] = 623, + [1308] = 622, + [1309] = 1140, + [1310] = 1125, + [1311] = 1143, + [1312] = 1000, + [1313] = 622, + [1314] = 623, + [1315] = 1148, + [1316] = 1137, + [1317] = 1047, + [1318] = 1001, + [1319] = 625, + [1320] = 1005, + [1321] = 637, + [1322] = 635, + [1323] = 1125, + [1324] = 1067, + [1325] = 1139, + [1326] = 1138, + [1327] = 1136, + [1328] = 1151, [1329] = 1126, - [1330] = 1079, - [1331] = 1081, - [1332] = 1122, - [1333] = 1113, - [1334] = 1074, - [1335] = 1074, - [1336] = 627, - [1337] = 1076, - [1338] = 1088, - [1339] = 627, - [1340] = 1076, - [1341] = 1087, - [1342] = 1085, - [1343] = 1086, - [1344] = 1078, - [1345] = 1085, - [1346] = 1086, - [1347] = 1087, - [1348] = 1078, - [1349] = 631, - [1350] = 1122, - [1351] = 1081, - [1352] = 1081, - [1353] = 1079, - [1354] = 1109, - [1355] = 1069, - [1356] = 1106, - [1357] = 1105, - [1358] = 636, - [1359] = 1088, - [1360] = 1103, - [1361] = 1102, - [1362] = 635, - [1363] = 1100, - [1364] = 1113, - [1365] = 1055, - [1366] = 636, - [1367] = 1109, - [1368] = 1099, - [1369] = 1079, - [1370] = 1068, - [1371] = 1106, - [1372] = 1099, - [1373] = 1067, - [1374] = 1066, - [1375] = 633, - [1376] = 1028, - [1377] = 1020, - [1378] = 1100, - [1379] = 1017, - [1380] = 1102, - [1381] = 1103, - [1382] = 1105, - [1383] = 639, - [1384] = 1105, - [1385] = 1106, - [1386] = 1109, - [1387] = 635, - [1388] = 1103, - [1389] = 647, - [1390] = 646, - [1391] = 628, - [1392] = 646, - [1393] = 1078, - [1394] = 647, - [1395] = 1076, - [1396] = 1074, - [1397] = 640, - [1398] = 641, - [1399] = 645, - [1400] = 1118, - [1401] = 1126, - [1402] = 1127, - [1403] = 647, - [1404] = 644, - [1405] = 646, - [1406] = 639, - [1407] = 636, - [1408] = 1066, - [1409] = 635, - [1410] = 1067, - [1411] = 1102, - [1412] = 1412, - [1413] = 1126, - [1414] = 640, - [1415] = 1055, - [1416] = 1087, - [1417] = 1086, - [1418] = 639, - [1419] = 641, - [1420] = 1118, - [1421] = 645, - [1422] = 1422, - [1423] = 1085, - [1424] = 639, - [1425] = 643, - [1426] = 644, - [1427] = 1000, - [1428] = 647, - [1429] = 1068, - [1430] = 646, - [1431] = 639, - [1432] = 1069, - [1433] = 1081, - [1434] = 1113, - [1435] = 1079, - [1436] = 1122, - [1437] = 1068, - [1438] = 1100, - [1439] = 634, - [1440] = 1122, - [1441] = 1113, - [1442] = 639, - [1443] = 628, - [1444] = 631, - [1445] = 1069, - [1446] = 1099, - [1447] = 1067, - [1448] = 1066, - [1449] = 633, - [1450] = 634, - [1451] = 1159, - [1452] = 1055, - [1453] = 645, - [1454] = 641, - [1455] = 1157, - [1456] = 1158, - [1457] = 1159, - [1458] = 646, - [1459] = 647, - [1460] = 640, - [1461] = 635, - [1462] = 636, - [1463] = 639, - [1464] = 1159, - [1465] = 1067, - [1466] = 1158, - [1467] = 644, - [1468] = 1157, - [1469] = 1068, - [1470] = 1157, - [1471] = 1158, - [1472] = 627, - [1473] = 643, - [1474] = 1087, - [1475] = 1081, - [1476] = 1126, - [1477] = 1069, - [1478] = 1076, - [1479] = 1078, - [1480] = 1079, - [1481] = 1109, - [1482] = 1127, - [1483] = 1113, - [1484] = 1122, - [1485] = 1085, - [1486] = 1086, - [1487] = 627, - [1488] = 1106, - [1489] = 1105, - [1490] = 1066, - [1491] = 1074, - [1492] = 1103, - [1493] = 1102, - [1494] = 1100, - [1495] = 1118, - [1496] = 1099, - [1497] = 1088, - [1498] = 645, - [1499] = 634, - [1500] = 633, - [1501] = 636, - [1502] = 1412, - [1503] = 1422, - [1504] = 639, - [1505] = 639, - [1506] = 639, - [1507] = 639, - [1508] = 631, - [1509] = 628, - [1510] = 646, - [1511] = 647, - [1512] = 644, - [1513] = 643, - [1514] = 641, - [1515] = 640, - [1516] = 635, + [1330] = 630, + [1331] = 1134, + [1332] = 1133, + [1333] = 1128, + [1334] = 1126, + [1335] = 1151, + [1336] = 618, + [1337] = 628, + [1338] = 1123, + [1339] = 1122, + [1340] = 1050, + [1341] = 1128, + [1342] = 1054, + [1343] = 1058, + [1344] = 1121, + [1345] = 636, + [1346] = 1148, + [1347] = 1143, + [1348] = 1137, + [1349] = 1147, + [1350] = 620, + [1351] = 1123, + [1352] = 1122, + [1353] = 1121, + [1354] = 1111, + [1355] = 1097, + [1356] = 1147, + [1357] = 1140, + [1358] = 1094, + [1359] = 620, + [1360] = 1092, + [1361] = 1148, + [1362] = 624, + [1363] = 1111, + [1364] = 1122, + [1365] = 1047, + [1366] = 1067, + [1367] = 1139, + [1368] = 1138, + [1369] = 1136, + [1370] = 1134, + [1371] = 1063, + [1372] = 1064, + [1373] = 1133, + [1374] = 1050, + [1375] = 1047, + [1376] = 625, + [1377] = 1067, + [1378] = 1054, + [1379] = 1058, + [1380] = 1064, + [1381] = 1063, + [1382] = 1047, + [1383] = 1147, + [1384] = 624, + [1385] = 1139, + [1386] = 1067, + [1387] = 1139, + [1388] = 1063, + [1389] = 1064, + [1390] = 1138, + [1391] = 1136, + [1392] = 1137, + [1393] = 1143, + [1394] = 1138, + [1395] = 1136, + [1396] = 1133, + [1397] = 1134, + [1398] = 1133, + [1399] = 636, + [1400] = 1148, + [1401] = 1125, + [1402] = 627, + [1403] = 620, + [1404] = 1050, + [1405] = 624, + [1406] = 1050, + [1407] = 620, + [1408] = 1054, + [1409] = 1058, + [1410] = 1054, + [1411] = 1058, + [1412] = 1134, + [1413] = 628, + [1414] = 626, + [1415] = 618, + [1416] = 619, + [1417] = 630, + [1418] = 632, + [1419] = 619, + [1420] = 632, + [1421] = 636, + [1422] = 626, + [1423] = 1147, + [1424] = 1140, + [1425] = 628, + [1426] = 618, + [1427] = 1125, + [1428] = 630, + [1429] = 635, + [1430] = 637, + [1431] = 635, + [1432] = 637, + [1433] = 999, + [1434] = 623, + [1435] = 622, + [1436] = 620, + [1437] = 1024, + [1438] = 627, + [1439] = 1151, + [1440] = 1126, + [1441] = 1128, + [1442] = 636, + [1443] = 624, + [1444] = 628, + [1445] = 1140, + [1446] = 1147, + [1447] = 1058, + [1448] = 1054, + [1449] = 618, + [1450] = 630, + [1451] = 635, + [1452] = 637, + [1453] = 1050, + [1454] = 1133, + [1455] = 1134, + [1456] = 1136, + [1457] = 1138, + [1458] = 1139, + [1459] = 1067, + [1460] = 1047, + [1461] = 1111, + [1462] = 1121, + [1463] = 1122, + [1464] = 1123, + [1465] = 1137, + [1466] = 1143, + [1467] = 1148, + [1468] = 1128, + [1469] = 1062, + [1470] = 1061, + [1471] = 1060, + [1472] = 1126, + [1473] = 1151, + [1474] = 622, + [1475] = 625, + [1476] = 623, + [1477] = 1077, + [1478] = 1062, + [1479] = 1061, + [1480] = 620, + [1481] = 1060, + [1482] = 1063, + [1483] = 1064, + [1484] = 1125, + [1485] = 625, + [1486] = 1062, + [1487] = 1061, + [1488] = 1060, + [1489] = 622, + [1490] = 636, + [1491] = 1306, + [1492] = 624, + [1493] = 628, + [1494] = 618, + [1495] = 630, + [1496] = 635, + [1497] = 637, + [1498] = 623, + [1499] = 1305, + [1500] = 620, + [1501] = 620, + [1502] = 627, + [1503] = 620, + [1504] = 626, + [1505] = 619, + [1506] = 620, + [1507] = 632, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1514, + [1516] = 1512, [1517] = 1517, - [1518] = 1518, - [1519] = 1422, - [1520] = 1412, - [1521] = 634, - [1522] = 633, - [1523] = 631, - [1524] = 628, - [1525] = 1517, - [1526] = 1518, - [1527] = 1518, - [1528] = 1517, - [1529] = 1518, - [1530] = 1517, - [1531] = 1518, - [1532] = 1517, - [1533] = 1517, - [1534] = 1518, - [1535] = 1517, - [1536] = 1536, - [1537] = 1537, - [1538] = 1517, - [1539] = 639, - [1540] = 1518, - [1541] = 647, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1518, - [1546] = 646, - [1547] = 647, - [1548] = 631, - [1549] = 631, - [1550] = 634, - [1551] = 634, - [1552] = 628, + [1518] = 1517, + [1519] = 1512, + [1520] = 1517, + [1521] = 1511, + [1522] = 1522, + [1523] = 1512, + [1524] = 1511, + [1525] = 1525, + [1526] = 1513, + [1527] = 1527, + [1528] = 1522, + [1529] = 1527, + [1530] = 1511, + [1531] = 1525, + [1532] = 1514, + [1533] = 1527, + [1534] = 1510, + [1535] = 1514, + [1536] = 1510, + [1537] = 1513, + [1538] = 1513, + [1539] = 1525, + [1540] = 1522, + [1541] = 1517, + [1542] = 1525, + [1543] = 1522, + [1544] = 1527, + [1545] = 1510, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1548, + [1550] = 1548, + [1551] = 1551, + [1552] = 1552, [1553] = 1553, [1554] = 1554, - [1555] = 1554, - [1556] = 1554, - [1557] = 1554, - [1558] = 628, - [1559] = 1554, - [1560] = 1560, - [1561] = 633, - [1562] = 1554, - [1563] = 1412, - [1564] = 646, - [1565] = 634, - [1566] = 1412, - [1567] = 628, - [1568] = 1422, - [1569] = 1412, - [1570] = 639, + [1555] = 1552, + [1556] = 1551, + [1557] = 1557, + [1558] = 1557, + [1559] = 1557, + [1560] = 1557, + [1561] = 1552, + [1562] = 1552, + [1563] = 1551, + [1564] = 1553, + [1565] = 1554, + [1566] = 1553, + [1567] = 1551, + [1568] = 1553, + [1569] = 1554, + [1570] = 1554, [1571] = 1571, - [1572] = 1554, - [1573] = 1422, - [1574] = 1574, - [1575] = 633, - [1576] = 1422, - [1577] = 1554, - [1578] = 1554, - [1579] = 1544, - [1580] = 1543, - [1581] = 633, - [1582] = 631, - [1583] = 1542, - [1584] = 1554, - [1585] = 1585, - [1586] = 1585, - [1587] = 1585, - [1588] = 1571, - [1589] = 1585, - [1590] = 1574, - [1591] = 1585, - [1592] = 1585, - [1593] = 1585, - [1594] = 1585, - [1595] = 1560, - [1596] = 1596, - [1597] = 1597, - [1598] = 1597, - [1599] = 1553, - [1600] = 1597, - [1601] = 1596, - [1602] = 1602, - [1603] = 1536, - [1604] = 1537, + [1572] = 1572, + [1573] = 1573, + [1574] = 1572, + [1575] = 1573, + [1576] = 1573, + [1577] = 1572, + [1578] = 1572, + [1579] = 1573, + [1580] = 1580, + [1581] = 1581, + [1582] = 632, + [1583] = 1306, + [1584] = 1581, + [1585] = 1305, + [1586] = 1580, + [1587] = 619, + [1588] = 627, + [1589] = 1580, + [1590] = 626, + [1591] = 1581, + [1592] = 1580, + [1593] = 1581, + [1594] = 1581, + [1595] = 1580, + [1596] = 1581, + [1597] = 1580, + [1598] = 1598, + [1599] = 622, + [1600] = 620, + [1601] = 1581, + [1602] = 623, + [1603] = 1580, + [1604] = 1604, [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 1606, - [1609] = 1609, - [1610] = 1609, - [1611] = 1611, - [1612] = 1611, - [1613] = 1613, - [1614] = 1614, + [1608] = 1581, + [1609] = 1580, + [1610] = 619, + [1611] = 619, + [1612] = 1598, + [1613] = 1604, + [1614] = 1306, [1615] = 1615, - [1616] = 1616, - [1617] = 1617, + [1616] = 1305, + [1617] = 626, [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1616, - [1623] = 1616, - [1624] = 1616, - [1625] = 1616, - [1626] = 1616, - [1627] = 1616, - [1628] = 1616, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1631, - [1633] = 1631, - [1634] = 1634, - [1635] = 1631, - [1636] = 1630, - [1637] = 1630, + [1619] = 1618, + [1620] = 626, + [1621] = 627, + [1622] = 627, + [1623] = 632, + [1624] = 1618, + [1625] = 619, + [1626] = 1618, + [1627] = 1618, + [1628] = 632, + [1629] = 1607, + [1630] = 626, + [1631] = 1618, + [1632] = 632, + [1633] = 1618, + [1634] = 1618, + [1635] = 1618, + [1636] = 620, + [1637] = 623, [1638] = 1638, - [1639] = 1630, - [1640] = 1638, - [1641] = 1638, - [1642] = 1631, - [1643] = 1631, - [1644] = 1630, - [1645] = 1630, - [1646] = 1638, - [1647] = 1638, - [1648] = 1630, - [1649] = 1638, - [1650] = 1631, - [1651] = 1631, - [1652] = 1638, - [1653] = 1630, - [1654] = 1654, - [1655] = 1638, - [1656] = 1613, - [1657] = 1657, - [1658] = 1657, - [1659] = 1613, - [1660] = 1660, - [1661] = 1657, - [1662] = 1662, - [1663] = 1619, - [1664] = 1617, - [1665] = 1615, - [1666] = 1657, - [1667] = 1667, + [1639] = 622, + [1640] = 1306, + [1641] = 1306, + [1642] = 1642, + [1643] = 1643, + [1644] = 1305, + [1645] = 1305, + [1646] = 627, + [1647] = 1618, + [1648] = 1648, + [1649] = 1648, + [1650] = 1648, + [1651] = 1651, + [1652] = 1648, + [1653] = 1605, + [1654] = 1648, + [1655] = 1655, + [1656] = 1656, + [1657] = 1606, + [1658] = 1656, + [1659] = 1638, + [1660] = 1643, + [1661] = 1642, + [1662] = 1648, + [1663] = 1615, + [1664] = 1656, + [1665] = 1648, + [1666] = 1651, + [1667] = 1648, [1668] = 1668, - [1669] = 1621, - [1670] = 1657, - [1671] = 1620, - [1672] = 1668, - [1673] = 1660, - [1674] = 1668, - [1675] = 1668, - [1676] = 1614, - [1677] = 1618, - [1678] = 1668, - [1679] = 1657, - [1680] = 1618, - [1681] = 1619, - [1682] = 1617, - [1683] = 1615, - [1684] = 1657, - [1685] = 1668, - [1686] = 1621, - [1687] = 1668, - [1688] = 1629, - [1689] = 1629, - [1690] = 1657, - [1691] = 1614, - [1692] = 1620, - [1693] = 1657, - [1694] = 1668, + [1669] = 1669, + [1670] = 1669, + [1671] = 1671, + [1672] = 1672, + [1673] = 1671, + [1674] = 1674, + [1675] = 1674, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1678, + [1680] = 1678, + [1681] = 1678, + [1682] = 1682, + [1683] = 1678, + [1684] = 1678, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1678, + [1690] = 1690, + [1691] = 1691, + [1692] = 1678, + [1693] = 1693, + [1694] = 1694, [1695] = 1695, - [1696] = 1668, - [1697] = 1629, - [1698] = 1614, - [1699] = 1621, - [1700] = 1613, - [1701] = 1613, - [1702] = 1619, - [1703] = 1617, - [1704] = 1615, - [1705] = 1705, - [1706] = 1618, - [1707] = 1629, - [1708] = 1619, - [1709] = 1614, - [1710] = 1629, - [1711] = 1615, - [1712] = 1617, - [1713] = 1713, - [1714] = 1615, - [1715] = 1621, - [1716] = 1613, - [1717] = 1620, - [1718] = 1619, - [1719] = 1617, - [1720] = 1614, - [1721] = 1620, - [1722] = 1660, + [1696] = 1693, + [1697] = 1697, + [1698] = 1695, + [1699] = 1693, + [1700] = 1700, + [1701] = 1695, + [1702] = 1694, + [1703] = 1694, + [1704] = 1694, + [1705] = 1695, + [1706] = 1694, + [1707] = 1693, + [1708] = 1693, + [1709] = 1695, + [1710] = 1694, + [1711] = 1695, + [1712] = 1694, + [1713] = 1693, + [1714] = 1693, + [1715] = 1694, + [1716] = 1693, + [1717] = 1695, + [1718] = 1695, + [1719] = 1687, + [1720] = 1682, + [1721] = 1688, + [1722] = 1722, [1723] = 1723, - [1724] = 1660, - [1725] = 1618, - [1726] = 1621, - [1727] = 1618, - [1728] = 1620, - [1729] = 1613, - [1730] = 1730, + [1724] = 1724, + [1725] = 1723, + [1726] = 1726, + [1727] = 1686, + [1728] = 1685, + [1729] = 1729, + [1730] = 1723, [1731] = 1731, - [1732] = 1730, - [1733] = 1730, - [1734] = 1618, - [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1738, - [1739] = 1614, - [1740] = 1740, - [1741] = 1740, - [1742] = 1730, - [1743] = 1629, - [1744] = 1738, - [1745] = 1745, - [1746] = 1629, - [1747] = 1747, - [1748] = 1617, - [1749] = 1615, - [1750] = 1730, - [1751] = 1751, - [1752] = 1752, - [1753] = 1618, - [1754] = 1745, - [1755] = 1755, - [1756] = 1619, - [1757] = 1730, - [1758] = 1621, - [1759] = 1723, - [1760] = 1747, + [1732] = 1722, + [1733] = 1722, + [1734] = 1685, + [1735] = 1677, + [1736] = 1722, + [1737] = 1723, + [1738] = 1723, + [1739] = 1690, + [1740] = 1691, + [1741] = 1686, + [1742] = 1722, + [1743] = 1676, + [1744] = 1723, + [1745] = 1722, + [1746] = 1682, + [1747] = 1722, + [1748] = 1688, + [1749] = 1691, + [1750] = 1677, + [1751] = 1690, + [1752] = 1723, + [1753] = 1722, + [1754] = 1726, + [1755] = 1723, + [1756] = 1723, + [1757] = 1687, + [1758] = 1722, + [1759] = 1676, + [1760] = 1688, [1761] = 1761, - [1762] = 1730, - [1763] = 1730, - [1764] = 1620, - [1765] = 1621, - [1766] = 1617, - [1767] = 1620, - [1768] = 1730, - [1769] = 1613, - [1770] = 1770, - [1771] = 1771, - [1772] = 1615, - [1773] = 1771, - [1774] = 1774, - [1775] = 1771, - [1776] = 1745, - [1777] = 1614, - [1778] = 1747, - [1779] = 1730, - [1780] = 1667, - [1781] = 1619, - [1782] = 1735, - [1783] = 1783, - [1784] = 1783, + [1762] = 1690, + [1763] = 1686, + [1764] = 1685, + [1765] = 1765, + [1766] = 1688, + [1767] = 1682, + [1768] = 1691, + [1769] = 1677, + [1770] = 1687, + [1771] = 1677, + [1772] = 1691, + [1773] = 1688, + [1774] = 1687, + [1775] = 1682, + [1776] = 1776, + [1777] = 1777, + [1778] = 1676, + [1779] = 1676, + [1780] = 1726, + [1781] = 1685, + [1782] = 1682, + [1783] = 1687, + [1784] = 1677, [1785] = 1785, - [1786] = 1783, - [1787] = 1783, + [1786] = 1686, + [1787] = 1726, [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1783, - [1793] = 1793, - [1794] = 1794, + [1789] = 1690, + [1790] = 1691, + [1791] = 1690, + [1792] = 1676, + [1793] = 1686, + [1794] = 1685, [1795] = 1795, - [1796] = 1796, - [1797] = 1796, + [1796] = 1765, + [1797] = 1797, [1798] = 1798, - [1799] = 1790, - [1800] = 1783, - [1801] = 1789, + [1799] = 1765, + [1800] = 1690, + [1801] = 1677, [1802] = 1802, - [1803] = 1793, - [1804] = 1804, - [1805] = 1805, - [1806] = 1783, - [1807] = 1667, - [1808] = 1791, - [1809] = 1667, - [1810] = 1802, - [1811] = 1789, - [1812] = 1812, - [1813] = 1783, - [1814] = 1814, + [1803] = 1765, + [1804] = 1802, + [1805] = 1686, + [1806] = 1676, + [1807] = 1690, + [1808] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1685, + [1812] = 1809, + [1813] = 1724, + [1814] = 1809, [1815] = 1815, [1816] = 1816, - [1817] = 1812, - [1818] = 1790, - [1819] = 1796, - [1820] = 1791, - [1821] = 1821, - [1822] = 1822, + [1817] = 1682, + [1818] = 1809, + [1819] = 1809, + [1820] = 1820, + [1821] = 1816, + [1822] = 1686, [1823] = 1823, - [1824] = 1824, - [1825] = 1821, - [1826] = 1826, - [1827] = 1827, + [1824] = 1687, + [1825] = 1825, + [1826] = 1685, + [1827] = 1676, [1828] = 1828, - [1829] = 1829, + [1829] = 1809, [1830] = 1830, [1831] = 1831, - [1832] = 1832, - [1833] = 1833, - [1834] = 1713, + [1832] = 1809, + [1833] = 1809, + [1834] = 1688, [1835] = 1835, - [1836] = 1836, - [1837] = 1713, - [1838] = 1829, - [1839] = 1839, - [1840] = 1840, + [1836] = 1825, + [1837] = 1687, + [1838] = 1798, + [1839] = 1795, + [1840] = 1820, [1841] = 1841, - [1842] = 1842, - [1843] = 1537, - [1844] = 1844, - [1845] = 1824, - [1846] = 1846, - [1847] = 1827, + [1842] = 1823, + [1843] = 1691, + [1844] = 1677, + [1845] = 1809, + [1846] = 1798, + [1847] = 1682, [1848] = 1848, - [1849] = 1849, - [1850] = 1830, - [1851] = 1731, - [1852] = 1852, - [1853] = 1853, + [1849] = 1825, + [1850] = 1691, + [1851] = 1688, + [1852] = 1809, + [1853] = 1802, [1854] = 1854, [1855] = 1855, [1856] = 1856, - [1857] = 1723, - [1858] = 1828, - [1859] = 1859, + [1857] = 1855, + [1858] = 1855, + [1859] = 1777, [1860] = 1860, - [1861] = 1833, + [1861] = 1761, [1862] = 1854, [1863] = 1863, - [1864] = 1856, - [1865] = 1865, - [1866] = 1713, - [1867] = 1828, + [1864] = 1776, + [1865] = 1854, + [1866] = 1866, + [1867] = 1808, [1868] = 1868, - [1869] = 1833, - [1870] = 1870, - [1871] = 1723, - [1872] = 1536, - [1873] = 1855, - [1874] = 1874, + [1869] = 1776, + [1870] = 1777, + [1871] = 1871, + [1872] = 1854, + [1873] = 1873, + [1874] = 1724, [1875] = 1875, - [1876] = 1863, - [1877] = 1874, - [1878] = 1826, - [1879] = 1836, - [1880] = 1860, + [1876] = 1876, + [1877] = 1877, + [1878] = 1776, + [1879] = 1879, + [1880] = 1856, [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1839, - [1886] = 1855, - [1887] = 1839, - [1888] = 1888, - [1889] = 1831, - [1890] = 1890, - [1891] = 1891, - [1892] = 1831, - [1893] = 1893, - [1894] = 1894, - [1895] = 1854, + [1882] = 1724, + [1883] = 1777, + [1884] = 1873, + [1885] = 1885, + [1886] = 1886, + [1887] = 1877, + [1888] = 1885, + [1889] = 1889, + [1890] = 1877, + [1891] = 1854, + [1892] = 1854, + [1893] = 1876, + [1894] = 1854, + [1895] = 1808, [1896] = 1896, [1897] = 1897, - [1898] = 1898, - [1899] = 1723, - [1900] = 1863, - [1901] = 1849, - [1902] = 1841, - [1903] = 1841, - [1904] = 1854, - [1905] = 1905, - [1906] = 1829, + [1898] = 1856, + [1899] = 1866, + [1900] = 1854, + [1901] = 1901, + [1902] = 1761, + [1903] = 1808, + [1904] = 1761, + [1905] = 1876, + [1906] = 1889, [1907] = 1907, - [1908] = 1830, - [1909] = 1897, - [1910] = 1822, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, [1911] = 1911, - [1912] = 1560, + [1912] = 1912, [1913] = 1913, - [1914] = 1865, + [1914] = 1871, [1915] = 1915, - [1916] = 1916, + [1916] = 1776, [1917] = 1917, - [1918] = 1874, + [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1921, + [1921] = 1917, [1922] = 1922, [1923] = 1923, [1924] = 1924, - [1925] = 1925, + [1925] = 1841, [1926] = 1926, - [1927] = 1916, - [1928] = 1911, + [1927] = 1927, + [1928] = 1928, [1929] = 1929, - [1930] = 1930, - [1931] = 1916, + [1930] = 1606, + [1931] = 1931, [1932] = 1932, - [1933] = 1882, - [1934] = 1934, - [1935] = 1923, - [1936] = 1936, - [1937] = 1937, - [1938] = 1934, - [1939] = 1859, - [1940] = 1930, - [1941] = 1790, - [1942] = 1822, - [1943] = 1897, - [1944] = 1916, - [1945] = 1925, - [1946] = 1946, - [1947] = 1897, - [1948] = 1874, - [1949] = 1916, - [1950] = 1822, - [1951] = 1929, + [1933] = 1911, + [1934] = 1605, + [1935] = 1935, + [1936] = 1777, + [1937] = 1795, + [1938] = 1938, + [1939] = 1871, + [1940] = 1917, + [1941] = 1918, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1945, + [1947] = 1932, + [1948] = 1948, + [1949] = 1949, + [1950] = 1950, + [1951] = 1945, [1952] = 1952, - [1953] = 1821, - [1954] = 1924, - [1955] = 1922, - [1956] = 1956, - [1957] = 1848, - [1958] = 1553, - [1959] = 1571, - [1960] = 1574, - [1961] = 1916, - [1962] = 1962, - [1963] = 1827, - [1964] = 1883, - [1965] = 1965, - [1966] = 1896, - [1967] = 1936, - [1968] = 1916, - [1969] = 1969, - [1970] = 1821, - [1971] = 1824, - [1972] = 1824, - [1973] = 1920, + [1953] = 1953, + [1954] = 1889, + [1955] = 1955, + [1956] = 1917, + [1957] = 1785, + [1958] = 1932, + [1959] = 1815, + [1960] = 1931, + [1961] = 1961, + [1962] = 1761, + [1963] = 1928, + [1964] = 1911, + [1965] = 1912, + [1966] = 1795, + [1967] = 1785, + [1968] = 1968, + [1969] = 1915, + [1970] = 1912, + [1971] = 1907, + [1972] = 1972, + [1973] = 1815, [1974] = 1974, [1975] = 1975, - [1976] = 1920, - [1977] = 1922, - [1978] = 1911, - [1979] = 1916, - [1980] = 1827, + [1976] = 1976, + [1977] = 1908, + [1978] = 1785, + [1979] = 1979, + [1980] = 1980, [1981] = 1981, - [1982] = 1831, - [1983] = 1833, + [1982] = 1982, + [1983] = 1983, [1984] = 1984, - [1985] = 1919, - [1986] = 1986, + [1985] = 1910, + [1986] = 1920, [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, + [1988] = 1795, + [1989] = 1923, + [1990] = 1924, [1991] = 1991, - [1992] = 1992, + [1992] = 1909, [1993] = 1993, [1994] = 1994, [1995] = 1995, - [1996] = 1917, - [1997] = 1997, - [1998] = 1915, - [1999] = 1999, - [2000] = 2000, - [2001] = 2001, - [2002] = 2002, - [2003] = 1921, - [2004] = 2004, - [2005] = 1995, - [2006] = 2006, + [1996] = 1931, + [1997] = 1815, + [1998] = 1929, + [1999] = 1871, + [2000] = 1942, + [2001] = 1918, + [2002] = 1972, + [2003] = 1915, + [2004] = 1910, + [2005] = 1980, + [2006] = 1984, [2007] = 2007, - [2008] = 1926, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 1975, + [2008] = 1889, + [2009] = 1907, + [2010] = 1983, + [2011] = 1915, + [2012] = 2012, [2013] = 2013, - [2014] = 1990, + [2014] = 2014, [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, + [2016] = 1926, + [2017] = 1972, + [2018] = 1981, + [2019] = 1980, [2020] = 2020, [2021] = 2021, [2022] = 2022, - [2023] = 2010, - [2024] = 2000, - [2025] = 2011, - [2026] = 2026, + [2023] = 1953, + [2024] = 2012, + [2025] = 1974, + [2026] = 1976, [2027] = 2027, - [2028] = 2028, + [2028] = 1643, [2029] = 2029, - [2030] = 1882, - [2031] = 2031, + [2030] = 2030, + [2031] = 1815, [2032] = 2032, [2033] = 2033, - [2034] = 2034, - [2035] = 2034, - [2036] = 2034, - [2037] = 2037, - [2038] = 2038, + [2034] = 1877, + [2035] = 2035, + [2036] = 2036, + [2037] = 1976, + [2038] = 1974, [2039] = 2039, [2040] = 2040, - [2041] = 1865, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, + [2041] = 2041, + [2042] = 1920, + [2043] = 1926, + [2044] = 1642, [2045] = 2045, - [2046] = 2046, + [2046] = 1923, [2047] = 2047, - [2048] = 2048, - [2049] = 1898, - [2050] = 1823, - [2051] = 2051, - [2052] = 1896, - [2053] = 2038, - [2054] = 1893, + [2048] = 1924, + [2049] = 2049, + [2050] = 2032, + [2051] = 2014, + [2052] = 2052, + [2053] = 1953, + [2054] = 1926, [2055] = 2055, - [2056] = 2039, - [2057] = 2037, + [2056] = 2056, + [2057] = 2057, [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2040, + [2059] = 1981, + [2060] = 1983, + [2061] = 1974, + [2062] = 2052, [2063] = 2063, [2064] = 2064, - [2065] = 1888, + [2065] = 2065, [2066] = 2066, - [2067] = 2067, + [2067] = 1955, [2068] = 2068, - [2069] = 2069, + [2069] = 1984, [2070] = 2070, - [2071] = 2066, - [2072] = 2043, - [2073] = 2042, - [2074] = 2040, + [2071] = 1920, + [2072] = 2020, + [2073] = 2073, + [2074] = 1923, [2075] = 2075, [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2038, - [2081] = 2031, - [2082] = 2082, - [2083] = 2064, - [2084] = 2084, - [2085] = 2059, - [2086] = 2037, - [2087] = 2046, - [2088] = 2029, + [2077] = 2014, + [2078] = 1924, + [2079] = 2052, + [2080] = 2014, + [2081] = 2081, + [2082] = 2040, + [2083] = 1638, + [2084] = 1907, + [2085] = 1953, + [2086] = 2086, + [2087] = 2014, + [2088] = 2088, [2089] = 2089, - [2090] = 2058, + [2090] = 2090, [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 2094, - [2095] = 653, + [2092] = 2007, + [2093] = 1984, + [2094] = 1927, + [2095] = 2045, [2096] = 2096, - [2097] = 1536, - [2098] = 2069, - [2099] = 2043, - [2100] = 2042, - [2101] = 2066, + [2097] = 1981, + [2098] = 2070, + [2099] = 1983, + [2100] = 2014, + [2101] = 2101, [2102] = 2102, - [2103] = 2022, - [2104] = 2104, - [2105] = 2076, - [2106] = 2106, - [2107] = 2107, - [2108] = 1896, - [2109] = 2028, - [2110] = 2034, - [2111] = 1859, - [2112] = 2029, - [2113] = 2046, - [2114] = 2076, - [2115] = 1988, - [2116] = 2040, - [2117] = 1987, - [2118] = 2033, - [2119] = 2018, - [2120] = 2120, - [2121] = 2029, - [2122] = 2046, - [2123] = 2076, + [2103] = 2103, + [2104] = 2063, + [2105] = 2032, + [2106] = 2063, + [2107] = 1980, + [2108] = 2108, + [2109] = 1972, + [2110] = 2090, + [2111] = 2111, + [2112] = 2012, + [2113] = 2014, + [2114] = 2114, + [2115] = 2086, + [2116] = 2116, + [2117] = 2117, + [2118] = 2014, + [2119] = 2119, + [2120] = 2027, + [2121] = 2121, + [2122] = 1615, + [2123] = 2111, [2124] = 2124, - [2125] = 2102, - [2126] = 1574, - [2127] = 2051, - [2128] = 2128, - [2129] = 2048, - [2130] = 2020, - [2131] = 2055, + [2125] = 1976, + [2126] = 2052, + [2127] = 2127, + [2128] = 2036, + [2129] = 2035, + [2130] = 2130, + [2131] = 2033, [2132] = 2132, - [2133] = 2029, - [2134] = 2046, - [2135] = 2059, - [2136] = 2067, - [2137] = 2064, - [2138] = 1536, - [2139] = 2066, - [2140] = 2027, - [2141] = 651, - [2142] = 2060, - [2143] = 2076, - [2144] = 1865, - [2145] = 2043, - [2146] = 2042, - [2147] = 1865, - [2148] = 2068, - [2149] = 2076, - [2150] = 2094, - [2151] = 2042, - [2152] = 650, - [2153] = 2093, - [2154] = 2058, - [2155] = 1907, - [2156] = 2064, - [2157] = 2043, - [2158] = 2059, + [2133] = 2022, + [2134] = 2134, + [2135] = 2135, + [2136] = 2015, + [2137] = 2039, + [2138] = 2013, + [2139] = 2139, + [2140] = 2140, + [2141] = 2141, + [2142] = 2116, + [2143] = 2041, + [2144] = 2057, + [2145] = 2058, + [2146] = 2022, + [2147] = 2033, + [2148] = 2065, + [2149] = 2088, + [2150] = 2091, + [2151] = 2035, + [2152] = 2096, + [2153] = 2036, + [2154] = 2029, + [2155] = 2127, + [2156] = 2039, + [2157] = 2103, + [2158] = 2130, [2159] = 2159, - [2160] = 2046, - [2161] = 2029, - [2162] = 2091, - [2163] = 2063, - [2164] = 2066, - [2165] = 2165, - [2166] = 2166, - [2167] = 1883, - [2168] = 2055, - [2169] = 1537, - [2170] = 2170, - [2171] = 2051, - [2172] = 2070, - [2173] = 2040, - [2174] = 2055, - [2175] = 2034, - [2176] = 2034, - [2177] = 2019, - [2178] = 2064, - [2179] = 2077, - [2180] = 2082, - [2181] = 2040, - [2182] = 2029, - [2183] = 2032, - [2184] = 2045, - [2185] = 2046, - [2186] = 2059, - [2187] = 1896, - [2188] = 2044, - [2189] = 2064, - [2190] = 2051, - [2191] = 2051, - [2192] = 2076, - [2193] = 2051, - [2194] = 2055, - [2195] = 1051, - [2196] = 2076, - [2197] = 2042, - [2198] = 2043, - [2199] = 2059, - [2200] = 2066, - [2201] = 2066, - [2202] = 2055, - [2203] = 2055, - [2204] = 2092, - [2205] = 2205, - [2206] = 2120, - [2207] = 2043, - [2208] = 2042, - [2209] = 2051, - [2210] = 1881, - [2211] = 2076, - [2212] = 2046, - [2213] = 2093, - [2214] = 2029, - [2215] = 2040, - [2216] = 2064, - [2217] = 2106, - [2218] = 2059, - [2219] = 2219, - [2220] = 2046, - [2221] = 2029, - [2222] = 2034, - [2223] = 648, - [2224] = 2091, - [2225] = 2061, - [2226] = 2079, - [2227] = 1536, - [2228] = 2102, - [2229] = 658, - [2230] = 1000, - [2231] = 1894, - [2232] = 2029, - [2233] = 1905, - [2234] = 2034, - [2235] = 2046, - [2236] = 2236, - [2237] = 2061, - [2238] = 2059, - [2239] = 2040, - [2240] = 2064, - [2241] = 2060, + [2160] = 2160, + [2161] = 2041, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2057, + [2166] = 2058, + [2167] = 2081, + [2168] = 2065, + [2169] = 2169, + [2170] = 2088, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2091, + [2176] = 2176, + [2177] = 2177, + [2178] = 2178, + [2179] = 2114, + [2180] = 2180, + [2181] = 2076, + [2182] = 2096, + [2183] = 2117, + [2184] = 2029, + [2185] = 2119, + [2186] = 2121, + [2187] = 2140, + [2188] = 2124, + [2189] = 2073, + [2190] = 2190, + [2191] = 2191, + [2192] = 2141, + [2193] = 2020, + [2194] = 2117, + [2195] = 2103, + [2196] = 2068, + [2197] = 2068, + [2198] = 2141, + [2199] = 2140, + [2200] = 2200, + [2201] = 2020, + [2202] = 2073, + [2203] = 2056, + [2204] = 2076, + [2205] = 2127, + [2206] = 2206, + [2207] = 2114, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2211, + [2212] = 2140, + [2213] = 2141, + [2214] = 2022, + [2215] = 2117, + [2216] = 2033, + [2217] = 2119, + [2218] = 2121, + [2219] = 2035, + [2220] = 2124, + [2221] = 2036, + [2222] = 2039, + [2223] = 2127, + [2224] = 2116, + [2225] = 2225, + [2226] = 2135, + [2227] = 2132, + [2228] = 2041, + [2229] = 2057, + [2230] = 2058, + [2231] = 2065, + [2232] = 2088, + [2233] = 2091, + [2234] = 2096, + [2235] = 2029, + [2236] = 2103, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, + [2240] = 2114, + [2241] = 2068, [2242] = 2242, - [2243] = 2166, - [2244] = 2076, - [2245] = 2091, - [2246] = 2042, - [2247] = 2051, - [2248] = 2248, - [2249] = 2043, - [2250] = 2066, - [2251] = 2055, - [2252] = 2084, + [2243] = 2073, + [2244] = 2244, + [2245] = 2076, + [2246] = 2116, + [2247] = 2139, + [2248] = 2173, + [2249] = 2124, + [2250] = 2250, + [2251] = 2021, + [2252] = 2252, [2253] = 2253, - [2254] = 2075, - [2255] = 2255, + [2254] = 2121, + [2255] = 2119, [2256] = 2256, [2257] = 2257, - [2258] = 1560, - [2259] = 1974, + [2258] = 2258, + [2259] = 2259, [2260] = 2260, - [2261] = 2253, + [2261] = 2261, [2262] = 2262, - [2263] = 2263, + [2263] = 1605, [2264] = 2264, - [2265] = 2265, + [2265] = 2242, [2266] = 2266, - [2267] = 2267, + [2267] = 1955, [2268] = 2268, - [2269] = 653, - [2270] = 2270, + [2269] = 2257, + [2270] = 2007, [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 2274, - [2275] = 2275, + [2274] = 2264, + [2275] = 2258, [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 2279, + [2279] = 2260, [2280] = 2280, [2281] = 2281, [2282] = 2282, - [2283] = 1553, + [2283] = 2283, [2284] = 2284, [2285] = 2285, - [2286] = 2286, - [2287] = 2287, + [2286] = 2262, + [2287] = 654, [2288] = 2288, [2289] = 2289, - [2290] = 2290, - [2291] = 2291, + [2290] = 1024, + [2291] = 2206, [2292] = 2292, - [2293] = 2293, - [2294] = 648, - [2295] = 2295, - [2296] = 2260, - [2297] = 2297, + [2293] = 2200, + [2294] = 2271, + [2295] = 2278, + [2296] = 2296, + [2297] = 2284, [2298] = 2298, - [2299] = 1560, - [2300] = 1974, + [2299] = 2299, + [2300] = 1643, [2301] = 2301, [2302] = 2302, [2303] = 2303, - [2304] = 658, - [2305] = 2292, - [2306] = 2306, - [2307] = 2270, - [2308] = 2308, + [2304] = 2304, + [2305] = 2280, + [2306] = 2007, + [2307] = 2307, + [2308] = 2299, [2309] = 2309, - [2310] = 2297, + [2310] = 2292, [2311] = 2311, [2312] = 2312, [2313] = 2313, - [2314] = 651, - [2315] = 1571, + [2314] = 2314, + [2315] = 2315, [2316] = 2316, - [2317] = 2301, - [2318] = 650, + [2317] = 2317, + [2318] = 2289, [2319] = 2319, [2320] = 2320, [2321] = 2321, - [2322] = 1574, + [2322] = 2322, [2323] = 2323, - [2324] = 2324, - [2325] = 2321, - [2326] = 2323, - [2327] = 2327, - [2328] = 2328, - [2329] = 1974, - [2330] = 2323, - [2331] = 2078, - [2332] = 2089, - [2333] = 2308, + [2324] = 2283, + [2325] = 2325, + [2326] = 2256, + [2327] = 641, + [2328] = 2319, + [2329] = 2160, + [2330] = 2317, + [2331] = 2284, + [2332] = 2162, + [2333] = 2313, [2334] = 2334, - [2335] = 1571, - [2336] = 2311, - [2337] = 2321, - [2338] = 1553, - [2339] = 2339, - [2340] = 2293, - [2341] = 2341, - [2342] = 2302, - [2343] = 1915, - [2344] = 2301, - [2345] = 2313, - [2346] = 2346, + [2335] = 2312, + [2336] = 2336, + [2337] = 642, + [2338] = 2338, + [2339] = 1605, + [2340] = 1991, + [2341] = 2321, + [2342] = 2342, + [2343] = 2280, + [2344] = 2278, + [2345] = 2312, + [2346] = 1955, [2347] = 2347, [2348] = 2348, - [2349] = 2349, - [2350] = 2349, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, + [2349] = 2313, + [2350] = 2317, + [2351] = 2250, + [2352] = 2244, + [2353] = 2261, [2354] = 2354, - [2355] = 2355, - [2356] = 2346, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2348, - [2361] = 2346, - [2362] = 2362, - [2363] = 2363, - [2364] = 2362, - [2365] = 2365, + [2355] = 2262, + [2356] = 2304, + [2357] = 2303, + [2358] = 2319, + [2359] = 2292, + [2360] = 2360, + [2361] = 2260, + [2362] = 2007, + [2363] = 2299, + [2364] = 2307, + [2365] = 2301, [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2353, - [2376] = 2372, + [2367] = 2304, + [2368] = 2303, + [2369] = 2303, + [2370] = 2292, + [2371] = 2257, + [2372] = 2304, + [2373] = 2285, + [2374] = 2210, + [2375] = 2375, + [2376] = 2272, [2377] = 2377, - [2378] = 2369, - [2379] = 2368, - [2380] = 2366, - [2381] = 2374, - [2382] = 2365, - [2383] = 2352, - [2384] = 2362, - [2385] = 2366, - [2386] = 2363, - [2387] = 2346, - [2388] = 2348, - [2389] = 2367, - [2390] = 2358, - [2391] = 2357, - [2392] = 2357, - [2393] = 2393, - [2394] = 2394, - [2395] = 2363, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 2367, - [2400] = 2352, - [2401] = 2401, - [2402] = 2402, - [2403] = 2403, - [2404] = 2353, - [2405] = 2363, - [2406] = 2406, - [2407] = 2406, - [2408] = 2408, - [2409] = 2353, - [2410] = 2367, - [2411] = 2349, - [2412] = 2362, - [2413] = 2357, - [2414] = 2358, - [2415] = 2358, - [2416] = 2365, - [2417] = 2368, - [2418] = 2369, - [2419] = 2372, - [2420] = 2348, - [2421] = 2393, - [2422] = 2363, - [2423] = 2362, - [2424] = 2365, - [2425] = 2362, - [2426] = 2372, - [2427] = 2366, - [2428] = 2351, - [2429] = 2369, - [2430] = 2368, - [2431] = 2369, - [2432] = 2368, - [2433] = 2377, - [2434] = 2346, - [2435] = 2373, - [2436] = 2436, - [2437] = 2437, - [2438] = 2366, - [2439] = 2365, - [2440] = 2440, - [2441] = 2362, - [2442] = 2442, - [2443] = 2348, - [2444] = 2444, - [2445] = 2442, - [2446] = 2446, - [2447] = 2446, - [2448] = 2363, - [2449] = 2368, - [2450] = 2369, - [2451] = 2348, - [2452] = 2372, - [2453] = 2372, - [2454] = 2398, - [2455] = 2369, - [2456] = 2394, - [2457] = 2368, - [2458] = 2366, - [2459] = 2358, - [2460] = 2460, - [2461] = 2374, - [2462] = 2357, - [2463] = 2463, - [2464] = 2366, - [2465] = 2353, - [2466] = 2365, - [2467] = 2467, - [2468] = 2362, - [2469] = 2373, - [2470] = 2372, - [2471] = 2444, - [2472] = 2374, - [2473] = 2394, - [2474] = 2346, - [2475] = 2353, - [2476] = 2437, - [2477] = 2363, - [2478] = 2406, - [2479] = 2348, - [2480] = 2436, - [2481] = 2349, - [2482] = 2365, - [2483] = 2358, - [2484] = 2484, - [2485] = 2363, - [2486] = 2486, - [2487] = 2467, - [2488] = 2357, - [2489] = 2489, - [2490] = 2490, - [2491] = 2490, - [2492] = 2492, - [2493] = 2346, - [2494] = 2494, - [2495] = 2440, - [2496] = 2357, - [2497] = 2354, - [2498] = 2363, - [2499] = 2367, - [2500] = 2358, - [2501] = 2349, - [2502] = 2502, - [2503] = 2467, - [2504] = 2353, - [2505] = 2346, - [2506] = 2357, - [2507] = 2507, - [2508] = 2508, - [2509] = 2509, - [2510] = 2358, - [2511] = 2352, - [2512] = 2348, - [2513] = 2347, - [2514] = 2353, - [2515] = 2372, - [2516] = 2444, - [2517] = 2349, - [2518] = 2396, - [2519] = 2406, - [2520] = 2349, + [2378] = 2378, + [2379] = 2342, + [2380] = 2314, + [2381] = 2304, + [2382] = 2303, + [2383] = 2301, + [2384] = 2360, + [2385] = 2282, + [2386] = 2299, + [2387] = 2292, + [2388] = 2388, + [2389] = 639, + [2390] = 2289, + [2391] = 2256, + [2392] = 2289, + [2393] = 2256, + [2394] = 2388, + [2395] = 2292, + [2396] = 2325, + [2397] = 2304, + [2398] = 2303, + [2399] = 2321, + [2400] = 999, + [2401] = 2301, + [2402] = 2299, + [2403] = 2302, + [2404] = 2301, + [2405] = 2323, + [2406] = 2303, + [2407] = 2304, + [2408] = 2307, + [2409] = 2257, + [2410] = 2282, + [2411] = 2282, + [2412] = 2264, + [2413] = 2413, + [2414] = 2414, + [2415] = 2163, + [2416] = 2272, + [2417] = 2257, + [2418] = 1968, + [2419] = 2283, + [2420] = 2321, + [2421] = 2260, + [2422] = 2422, + [2423] = 2315, + [2424] = 2262, + [2425] = 1950, + [2426] = 2319, + [2427] = 2134, + [2428] = 2317, + [2429] = 2288, + [2430] = 2348, + [2431] = 2313, + [2432] = 2432, + [2433] = 2312, + [2434] = 2266, + [2435] = 1948, + [2436] = 2292, + [2437] = 2289, + [2438] = 2256, + [2439] = 1944, + [2440] = 2280, + [2441] = 2441, + [2442] = 1605, + [2443] = 2443, + [2444] = 2272, + [2445] = 2304, + [2446] = 2303, + [2447] = 2334, + [2448] = 2413, + [2449] = 2301, + [2450] = 2262, + [2451] = 2299, + [2452] = 2432, + [2453] = 2282, + [2454] = 2292, + [2455] = 2316, + [2456] = 2260, + [2457] = 2289, + [2458] = 649, + [2459] = 2256, + [2460] = 1987, + [2461] = 2282, + [2462] = 1993, + [2463] = 2272, + [2464] = 2257, + [2465] = 1994, + [2466] = 2257, + [2467] = 2162, + [2468] = 2468, + [2469] = 2272, + [2470] = 2260, + [2471] = 2262, + [2472] = 2210, + [2473] = 2210, + [2474] = 2474, + [2475] = 2262, + [2476] = 2304, + [2477] = 2282, + [2478] = 2303, + [2479] = 2260, + [2480] = 2301, + [2481] = 2481, + [2482] = 2276, + [2483] = 2256, + [2484] = 2289, + [2485] = 2299, + [2486] = 2277, + [2487] = 2292, + [2488] = 2276, + [2489] = 2277, + [2490] = 2163, + [2491] = 2491, + [2492] = 2299, + [2493] = 2271, + [2494] = 2301, + [2495] = 2292, + [2496] = 2303, + [2497] = 2304, + [2498] = 2289, + [2499] = 2256, + [2500] = 2259, + [2501] = 2468, + [2502] = 2162, + [2503] = 2481, + [2504] = 2282, + [2505] = 2307, + [2506] = 2311, + [2507] = 1606, + [2508] = 2272, + [2509] = 2160, + [2510] = 2262, + [2511] = 2272, + [2512] = 2320, + [2513] = 2257, + [2514] = 1955, + [2515] = 2260, + [2516] = 2516, + [2517] = 2517, + [2518] = 642, + [2519] = 2519, + [2520] = 2520, [2521] = 2521, - [2522] = 2369, - [2523] = 2368, - [2524] = 2509, + [2522] = 2522, + [2523] = 2523, + [2524] = 1638, [2525] = 2525, - [2526] = 2526, + [2526] = 1642, [2527] = 2527, - [2528] = 2507, + [2528] = 2528, [2529] = 2529, - [2530] = 2363, - [2531] = 2366, - [2532] = 2527, - [2533] = 2408, - [2534] = 2349, - [2535] = 2401, - [2536] = 2492, - [2537] = 2486, - [2538] = 2365, - [2539] = 2402, - [2540] = 2486, + [2530] = 2530, + [2531] = 1615, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 2536, + [2537] = 2537, + [2538] = 641, + [2539] = 2539, + [2540] = 1643, [2541] = 2541, - [2542] = 2406, + [2542] = 2542, + [2543] = 2543, + [2544] = 639, + [2545] = 2066, + [2546] = 649, + [2547] = 2547, + [2548] = 2516, + [2549] = 2549, + [2550] = 654, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2066, + [2556] = 2556, + [2557] = 2547, + [2558] = 2528, + [2559] = 2559, + [2560] = 2516, + [2561] = 2561, + [2562] = 2562, + [2563] = 2549, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 2567, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2527, + [2572] = 2281, + [2573] = 1642, + [2574] = 2574, + [2575] = 2517, + [2576] = 2562, + [2577] = 2566, + [2578] = 2578, + [2579] = 2579, + [2580] = 2567, + [2581] = 2581, + [2582] = 2564, + [2583] = 2583, + [2584] = 2551, + [2585] = 2585, + [2586] = 2586, + [2587] = 1638, + [2588] = 2517, + [2589] = 2589, + [2590] = 2579, + [2591] = 2570, + [2592] = 2566, + [2593] = 2567, + [2594] = 2594, + [2595] = 2296, + [2596] = 2570, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, + [2601] = 2547, + [2602] = 2549, + [2603] = 2586, + [2604] = 2599, + [2605] = 2605, + [2606] = 2606, + [2607] = 2517, + [2608] = 2567, + [2609] = 2609, + [2610] = 2066, + [2611] = 2268, + [2612] = 2566, + [2613] = 2532, + [2614] = 2597, + [2615] = 2570, + [2616] = 1615, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 2629, + [2630] = 2617, + [2631] = 2631, + [2632] = 2632, + [2633] = 2633, + [2634] = 2634, + [2635] = 2624, + [2636] = 2634, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2619, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2643, + [2646] = 2644, + [2647] = 2620, + [2648] = 2648, + [2649] = 2648, + [2650] = 2619, + [2651] = 2620, + [2652] = 2642, + [2653] = 2631, + [2654] = 2654, + [2655] = 2617, + [2656] = 2644, + [2657] = 2657, + [2658] = 2658, + [2659] = 2659, + [2660] = 2619, + [2661] = 2658, + [2662] = 2644, + [2663] = 2627, + [2664] = 2664, + [2665] = 2640, + [2666] = 2666, + [2667] = 2667, + [2668] = 2639, + [2669] = 2626, + [2670] = 2638, + [2671] = 2638, + [2672] = 2624, + [2673] = 2634, + [2674] = 2674, + [2675] = 2631, + [2676] = 2617, + [2677] = 2626, + [2678] = 2643, + [2679] = 2659, + [2680] = 2680, + [2681] = 2638, + [2682] = 2667, + [2683] = 2628, + [2684] = 2684, + [2685] = 2638, + [2686] = 2639, + [2687] = 2687, + [2688] = 2626, + [2689] = 2684, + [2690] = 2690, + [2691] = 2628, + [2692] = 2628, + [2693] = 2658, + [2694] = 2659, + [2695] = 2620, + [2696] = 2634, + [2697] = 2680, + [2698] = 2698, + [2699] = 2699, + [2700] = 2644, + [2701] = 2643, + [2702] = 2702, + [2703] = 2627, + [2704] = 2704, + [2705] = 2631, + [2706] = 2619, + [2707] = 2640, + [2708] = 2620, + [2709] = 2657, + [2710] = 2710, + [2711] = 2711, + [2712] = 2639, + [2713] = 2713, + [2714] = 2714, + [2715] = 2638, + [2716] = 2716, + [2717] = 2634, + [2718] = 2618, + [2719] = 2627, + [2720] = 2629, + [2721] = 2625, + [2722] = 2621, + [2723] = 2624, + [2724] = 2634, + [2725] = 2716, + [2726] = 2624, + [2727] = 2713, + [2728] = 2631, + [2729] = 2617, + [2730] = 2638, + [2731] = 2628, + [2732] = 2633, + [2733] = 2733, + [2734] = 2626, + [2735] = 2639, + [2736] = 2690, + [2737] = 2622, + [2738] = 2711, + [2739] = 2666, + [2740] = 2643, + [2741] = 2619, + [2742] = 2742, + [2743] = 2626, + [2744] = 2620, + [2745] = 2711, + [2746] = 2644, + [2747] = 2629, + [2748] = 2643, + [2749] = 2633, + [2750] = 2750, + [2751] = 2684, + [2752] = 2643, + [2753] = 2628, + [2754] = 2619, + [2755] = 2755, + [2756] = 2658, + [2757] = 2644, + [2758] = 2620, + [2759] = 2640, + [2760] = 2684, + [2761] = 2640, + [2762] = 2666, + [2763] = 2742, + [2764] = 2666, + [2765] = 2628, + [2766] = 2666, + [2767] = 2704, + [2768] = 2667, + [2769] = 2769, + [2770] = 2639, + [2771] = 2638, + [2772] = 2772, + [2773] = 2639, + [2774] = 2774, + [2775] = 2620, + [2776] = 2624, + [2777] = 2659, + [2778] = 2617, + [2779] = 2644, + [2780] = 2634, + [2781] = 2643, + [2782] = 2638, + [2783] = 2783, + [2784] = 2626, + [2785] = 2785, + [2786] = 2631, + [2787] = 2619, + [2788] = 2640, + [2789] = 2639, + [2790] = 2617, + [2791] = 2791, + [2792] = 2659, + [2793] = 2667, + [2794] = 2638, + [2795] = 2626, + [2796] = 2624, + [2797] = 2640, + [2798] = 2798, + [2799] = 2624, + [2800] = 2785, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2783, + [2805] = 2634, + [2806] = 2631, + [2807] = 2640, + [2808] = 2803, + [2809] = 2654, + [2810] = 2631, + [2811] = 2687, + [2812] = 2698, + [2813] = 2791, + [2814] = 2628, + [2815] = 2772, + [2816] = 2791, + [2817] = 2617, + [2818] = 2684, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -7927,32 +8230,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(53) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == '+') ADVANCE(93); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(89); + if (lookahead == '-') ADVANCE(87); if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(94); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '>') ADVANCE(115); if (lookahead == '@') ADVANCE(84); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(133); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(101); + if (lookahead == '^') ADVANCE(103); if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(97); - if (lookahead == '}') ADVANCE(131); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(89); + if (lookahead == '}') ADVANCE(91); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); @@ -7967,8 +8270,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(135); if (lookahead == '#') ADVANCE(136); if (lookahead == '\\') ADVANCE(134); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '}') ADVANCE(131); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '}') ADVANCE(91); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 8203 || @@ -7981,48 +8284,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(146); END_STATE(); case 5: - if (lookahead == '.') ADVANCE(129); + if (lookahead == '.') ADVANCE(131); END_STATE(); case 6: if (lookahead == '/') ADVANCE(16); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 7: if (lookahead == '<') ADVANCE(17); END_STATE(); case 8: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 9: - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(112); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); case 10: - if (lookahead == '=') ADVANCE(122); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 11: - if (lookahead == '=') ADVANCE(126); + if (lookahead == '=') ADVANCE(128); END_STATE(); case 12: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 13: - if (lookahead == '=') ADVANCE(127); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 14: - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 15: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 16: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 17: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 18: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 19: if (lookahead == '>') ADVANCE(76); @@ -8075,28 +8378,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(29) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); if (lookahead == '(') ADVANCE(61); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == '+') ADVANCE(93); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '-') ADVANCE(86); if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(94); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '>') ADVANCE(115); if (lookahead == '@') ADVANCE(84); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(97); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(89); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); @@ -8109,31 +8412,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(30) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(98); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(85); + if (lookahead == '+') ADVANCE(92); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(87); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(91); + if (lookahead == '/') ADVANCE(95); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(106); + if (lookahead == '<') ADVANCE(108); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(114); + if (lookahead == '>') ADVANCE(116); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(131); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(91); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); @@ -8149,8 +8452,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '&') ADVANCE(11); if (lookahead == '(') ADVANCE(61); if (lookahead == '*') ADVANCE(67); - if (lookahead == '+') ADVANCE(86); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '+') ADVANCE(93); + if (lookahead == '-') ADVANCE(86); if (lookahead == '.') ADVANCE(4); if (lookahead == '/') ADVANCE(6); if (lookahead == '0') ADVANCE(140); @@ -8163,9 +8466,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == '^') ADVANCE(13); - if (lookahead == '{') ADVANCE(130); + if (lookahead == '{') ADVANCE(90); if (lookahead == '|') ADVANCE(14); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); @@ -8178,27 +8481,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(32) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == '+') ADVANCE(93); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '-') ADVANCE(86); if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(94); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '>') ADVANCE(115); if (lookahead == '@') ADVANCE(84); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(97); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (lookahead == ']') ADVANCE(82); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '|') ADVANCE(89); + if (lookahead == '}') ADVANCE(91); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 33: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8209,27 +8514,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(33) if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == '+') ADVANCE(93); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '-') ADVANCE(86); if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(94); if (lookahead == ':') ADVANCE(71); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '>') ADVANCE(115); if (lookahead == '@') ADVANCE(84); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '|') ADVANCE(97); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '|') ADVANCE(89); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 34: @@ -8239,31 +8544,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(34) if (lookahead == '\r') SKIP(34) - if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(98); - if (lookahead == '(') ADVANCE(61); - if (lookahead == ')') ADVANCE(62); - if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(85); - if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(87); - if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(91); + if (lookahead == '-') ADVANCE(19); if (lookahead == ':') ADVANCE(71); - if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(114); - if (lookahead == '@') ADVANCE(83); - if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); - if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(131); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); + if (lookahead == 'e') ADVANCE(163); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 35: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8272,11 +8558,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(35) if (lookahead == '\r') SKIP(35) + if (lookahead == '!') ADVANCE(8); if (lookahead == '#') ADVANCE(167); - if (lookahead == '-') ADVANCE(19); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); + if (lookahead == '(') ADVANCE(61); + if (lookahead == '*') ADVANCE(65); + if (lookahead == '+') ADVANCE(93); + if (lookahead == ',') ADVANCE(63); + if (lookahead == '-') ADVANCE(86); + if (lookahead == '.') ADVANCE(60); + if (lookahead == '/') ADVANCE(94); + if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(71); + if (lookahead == ';') ADVANCE(58); + if (lookahead == '<') ADVANCE(107); + if (lookahead == '=') ADVANCE(80); + if (lookahead == '>') ADVANCE(115); + if (lookahead == '@') ADVANCE(84); + if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); - if (lookahead == 'e') ADVANCE(163); + if (lookahead == '^') ADVANCE(103); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(89); + if (lookahead == '~') ADVANCE(106); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); case 36: @@ -8286,32 +8592,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8288 || lookahead == 65279) SKIP(36) if (lookahead == '\r') SKIP(36) - if (lookahead == '!') ADVANCE(8); + if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); if (lookahead == '(') ADVANCE(61); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == ')') ADVANCE(62); + if (lookahead == '*') ADVANCE(66); + if (lookahead == '+') ADVANCE(92); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(88); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(95); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(71); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(108); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); - if (lookahead == '@') ADVANCE(84); + if (lookahead == '>') ADVANCE(116); + if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); - if (lookahead == '^') ADVANCE(101); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(97); - if (lookahead == '~') ADVANCE(104); + if (lookahead == ']') ADVANCE(82); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(91); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 37: if (('\t' <= lookahead && lookahead <= '\f') || @@ -8322,32 +8631,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(37) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(98); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(85); + if (lookahead == '+') ADVANCE(92); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(87); - if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(91); - if (lookahead == '0') ADVANCE(140); + if (lookahead == '-') ADVANCE(85); + if (lookahead == '.') ADVANCE(59); + if (lookahead == '/') ADVANCE(95); if (lookahead == ':') ADVANCE(71); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(106); + if (lookahead == '<') ADVANCE(108); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(114); + if (lookahead == '>') ADVANCE(116); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(131); - if (lookahead == '~') ADVANCE(104); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(91); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 38: @@ -8359,28 +8664,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(38) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(92); - if (lookahead == '&') ADVANCE(98); + if (lookahead == '%') ADVANCE(96); + if (lookahead == '&') ADVANCE(100); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(85); + if (lookahead == '+') ADVANCE(92); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(87); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(59); - if (lookahead == '/') ADVANCE(91); + if (lookahead == '/') ADVANCE(95); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(106); + if (lookahead == '<') ADVANCE(108); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(114); + if (lookahead == '>') ADVANCE(116); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(100); - if (lookahead == '|') ADVANCE(96); - if (lookahead == '}') ADVANCE(131); + if (lookahead == '^') ADVANCE(102); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(91); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); case 39: @@ -8454,32 +8759,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(53) if (lookahead == '!') ADVANCE(9); if (lookahead == '#') ADVANCE(167); - if (lookahead == '%') ADVANCE(93); - if (lookahead == '&') ADVANCE(99); + if (lookahead == '%') ADVANCE(97); + if (lookahead == '&') ADVANCE(101); if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(86); + if (lookahead == '+') ADVANCE(93); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(89); + if (lookahead == '-') ADVANCE(87); if (lookahead == '.') ADVANCE(60); - if (lookahead == '/') ADVANCE(90); + if (lookahead == '/') ADVANCE(94); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(72); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(105); + if (lookahead == '<') ADVANCE(107); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '>') ADVANCE(115); if (lookahead == '@') ADVANCE(84); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '^') ADVANCE(101); + if (lookahead == '^') ADVANCE(103); if (lookahead == 'e') ADVANCE(163); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '|') ADVANCE(97); - if (lookahead == '}') ADVANCE(131); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(89); + if (lookahead == '}') ADVANCE(91); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_1(lookahead)) ADVANCE(166); END_STATE(); @@ -8496,23 +8801,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(61); if (lookahead == ')') ADVANCE(62); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(85); + if (lookahead == '+') ADVANCE(92); if (lookahead == ',') ADVANCE(63); - if (lookahead == '-') ADVANCE(87); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(4); if (lookahead == '0') ADVANCE(140); if (lookahead == ':') ADVANCE(71); if (lookahead == ';') ADVANCE(58); - if (lookahead == '<') ADVANCE(107); + if (lookahead == '<') ADVANCE(109); if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(112); + if (lookahead == '>') ADVANCE(114); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == ']') ADVANCE(82); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '}') ADVANCE(131); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '|') ADVANCE(88); + if (lookahead == '}') ADVANCE(91); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); @@ -8527,16 +8833,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(167); if (lookahead == '(') ADVANCE(61); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(85); - if (lookahead == '-') ADVANCE(87); + if (lookahead == '+') ADVANCE(92); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(4); if (lookahead == '0') ADVANCE(140); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == 'e') ADVANCE(164); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); @@ -8551,16 +8857,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(167); if (lookahead == '(') ADVANCE(61); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(85); - if (lookahead == '-') ADVANCE(87); + if (lookahead == '+') ADVANCE(92); + if (lookahead == '-') ADVANCE(85); if (lookahead == '.') ADVANCE(4); if (lookahead == '0') ADVANCE(140); if (lookahead == '@') ADVANCE(83); if (lookahead == '[') ADVANCE(81); if (lookahead == '\\') ADVANCE(26); if (lookahead == 'e') ADVANCE(165); - if (lookahead == '{') ADVANCE(130); - if (lookahead == '~') ADVANCE(104); + if (lookahead == '{') ADVANCE(90); + if (lookahead == '~') ADVANCE(106); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(139); if (sym_identifier_character_set_2(lookahead)) ADVANCE(166); END_STATE(); @@ -8593,7 +8899,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 65: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') ADVANCE(78); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_STAR); @@ -8602,14 +8908,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') ADVANCE(15); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 68: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 69: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(126); END_STATE(); case 70: ACCEPT_TOKEN(anon_sym_COLON_EQ); @@ -8641,14 +8947,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 78: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 79: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -8661,174 +8967,174 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(122); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 87: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(119); + if (lookahead == '>') ADVANCE(76); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(117); - if (lookahead == '>') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(130); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(95); - if (lookahead == '=') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(118); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '=') ADVANCE(121); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(98); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(126); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(127); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(128); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(125); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(129); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(103); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(127); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(102); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 107: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(115); + if (lookahead == '<') ADVANCE(105); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(117); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(117); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(110); + if (lookahead == '>') ADVANCE(117); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(69); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 114: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(68); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(113); + if (lookahead == '>') ADVANCE(69); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(113); + if (lookahead == '>') ADVANCE(68); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_AT_EQ); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 129: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym_ellipsis); END_STATE(); case 132: ACCEPT_TOKEN(sym_escape_sequence); @@ -9055,12 +9361,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(150); if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(150); + if (lookahead == 't') ADVANCE(74); if (sym_identifier_character_set_3(lookahead)) ADVANCE(166); END_STATE(); case 163: @@ -9137,6 +9443,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(24); END_STATE(); case 4: + ACCEPT_TOKEN(anon_sym__); if (lookahead == '_') ADVANCE(25); END_STATE(); case 5: @@ -9689,29 +9996,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [63] = {.lex_state = 54, .external_lex_state = 3}, [64] = {.lex_state = 54, .external_lex_state = 3}, [65] = {.lex_state = 54, .external_lex_state = 3}, - [66] = {.lex_state = 54, .external_lex_state = 3}, + [66] = {.lex_state = 54, .external_lex_state = 2}, [67] = {.lex_state = 54, .external_lex_state = 3}, - [68] = {.lex_state = 54, .external_lex_state = 2}, + [68] = {.lex_state = 54, .external_lex_state = 3}, [69] = {.lex_state = 54, .external_lex_state = 3}, [70] = {.lex_state = 54, .external_lex_state = 3}, [71] = {.lex_state = 54, .external_lex_state = 2}, [72] = {.lex_state = 54, .external_lex_state = 3}, - [73] = {.lex_state = 54, .external_lex_state = 3}, - [74] = {.lex_state = 54, .external_lex_state = 3}, - [75] = {.lex_state = 29, .external_lex_state = 4}, - [76] = {.lex_state = 29, .external_lex_state = 4}, + [73] = {.lex_state = 29, .external_lex_state = 4}, + [74] = {.lex_state = 29, .external_lex_state = 4}, + [75] = {.lex_state = 30, .external_lex_state = 5}, + [76] = {.lex_state = 30, .external_lex_state = 5}, [77] = {.lex_state = 30, .external_lex_state = 5}, [78] = {.lex_state = 30, .external_lex_state = 5}, [79] = {.lex_state = 30, .external_lex_state = 5}, [80] = {.lex_state = 30, .external_lex_state = 5}, [81] = {.lex_state = 30, .external_lex_state = 5}, [82] = {.lex_state = 30, .external_lex_state = 5}, - [83] = {.lex_state = 30, .external_lex_state = 5}, - [84] = {.lex_state = 30, .external_lex_state = 5}, + [83] = {.lex_state = 29, .external_lex_state = 4}, + [84] = {.lex_state = 29, .external_lex_state = 4}, [85] = {.lex_state = 29, .external_lex_state = 4}, [86] = {.lex_state = 29, .external_lex_state = 4}, - [87] = {.lex_state = 29, .external_lex_state = 4}, - [88] = {.lex_state = 29, .external_lex_state = 4}, + [87] = {.lex_state = 54, .external_lex_state = 5}, + [88] = {.lex_state = 54, .external_lex_state = 5}, [89] = {.lex_state = 54, .external_lex_state = 5}, [90] = {.lex_state = 54, .external_lex_state = 5}, [91] = {.lex_state = 54, .external_lex_state = 5}, @@ -9760,10 +10067,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 54, .external_lex_state = 5}, [135] = {.lex_state = 54, .external_lex_state = 5}, [136] = {.lex_state = 54, .external_lex_state = 5}, - [137] = {.lex_state = 54, .external_lex_state = 5}, - [138] = {.lex_state = 54, .external_lex_state = 5}, - [139] = {.lex_state = 54, .external_lex_state = 5}, - [140] = {.lex_state = 54, .external_lex_state = 5}, + [137] = {.lex_state = 54, .external_lex_state = 4}, + [138] = {.lex_state = 54, .external_lex_state = 4}, + [139] = {.lex_state = 54, .external_lex_state = 4}, + [140] = {.lex_state = 54, .external_lex_state = 4}, [141] = {.lex_state = 54, .external_lex_state = 4}, [142] = {.lex_state = 54, .external_lex_state = 4}, [143] = {.lex_state = 54, .external_lex_state = 4}, @@ -9776,330 +10083,330 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [150] = {.lex_state = 54, .external_lex_state = 4}, [151] = {.lex_state = 54, .external_lex_state = 4}, [152] = {.lex_state = 54, .external_lex_state = 4}, - [153] = {.lex_state = 54, .external_lex_state = 4}, - [154] = {.lex_state = 54, .external_lex_state = 4}, - [155] = {.lex_state = 54, .external_lex_state = 4}, - [156] = {.lex_state = 54, .external_lex_state = 4}, - [157] = {.lex_state = 54, .external_lex_state = 2}, - [158] = {.lex_state = 29, .external_lex_state = 4}, - [159] = {.lex_state = 29, .external_lex_state = 4}, - [160] = {.lex_state = 36, .external_lex_state = 4}, - [161] = {.lex_state = 30, .external_lex_state = 4}, - [162] = {.lex_state = 37, .external_lex_state = 4}, - [163] = {.lex_state = 30, .external_lex_state = 6}, - [164] = {.lex_state = 37, .external_lex_state = 4}, - [165] = {.lex_state = 37, .external_lex_state = 6}, + [153] = {.lex_state = 54, .external_lex_state = 2}, + [154] = {.lex_state = 29, .external_lex_state = 4}, + [155] = {.lex_state = 29, .external_lex_state = 4}, + [156] = {.lex_state = 35, .external_lex_state = 4}, + [157] = {.lex_state = 30, .external_lex_state = 4}, + [158] = {.lex_state = 36, .external_lex_state = 4}, + [159] = {.lex_state = 36, .external_lex_state = 4}, + [160] = {.lex_state = 30, .external_lex_state = 6}, + [161] = {.lex_state = 36, .external_lex_state = 6}, + [162] = {.lex_state = 30, .external_lex_state = 6}, + [163] = {.lex_state = 30, .external_lex_state = 2}, + [164] = {.lex_state = 30, .external_lex_state = 6}, + [165] = {.lex_state = 30, .external_lex_state = 7}, [166] = {.lex_state = 30, .external_lex_state = 6}, - [167] = {.lex_state = 37, .external_lex_state = 7}, - [168] = {.lex_state = 30, .external_lex_state = 7}, + [167] = {.lex_state = 36, .external_lex_state = 6}, + [168] = {.lex_state = 36, .external_lex_state = 7}, [169] = {.lex_state = 30, .external_lex_state = 7}, - [170] = {.lex_state = 37, .external_lex_state = 6}, - [171] = {.lex_state = 30, .external_lex_state = 6}, - [172] = {.lex_state = 30, .external_lex_state = 2}, - [173] = {.lex_state = 30, .external_lex_state = 6}, - [174] = {.lex_state = 37, .external_lex_state = 2}, - [175] = {.lex_state = 30, .external_lex_state = 7}, - [176] = {.lex_state = 30, .external_lex_state = 7}, + [170] = {.lex_state = 36, .external_lex_state = 6}, + [171] = {.lex_state = 30, .external_lex_state = 8}, + [172] = {.lex_state = 36, .external_lex_state = 2}, + [173] = {.lex_state = 36, .external_lex_state = 2}, + [174] = {.lex_state = 35, .external_lex_state = 4}, + [175] = {.lex_state = 30, .external_lex_state = 8}, + [176] = {.lex_state = 30, .external_lex_state = 8}, [177] = {.lex_state = 30, .external_lex_state = 7}, - [178] = {.lex_state = 30, .external_lex_state = 8}, - [179] = {.lex_state = 30, .external_lex_state = 8}, - [180] = {.lex_state = 37, .external_lex_state = 8}, - [181] = {.lex_state = 37, .external_lex_state = 7}, - [182] = {.lex_state = 30, .external_lex_state = 8}, + [178] = {.lex_state = 36, .external_lex_state = 8}, + [179] = {.lex_state = 30, .external_lex_state = 7}, + [180] = {.lex_state = 30, .external_lex_state = 8}, + [181] = {.lex_state = 36, .external_lex_state = 7}, + [182] = {.lex_state = 30, .external_lex_state = 7}, [183] = {.lex_state = 30, .external_lex_state = 7}, - [184] = {.lex_state = 36, .external_lex_state = 4}, - [185] = {.lex_state = 37, .external_lex_state = 6}, - [186] = {.lex_state = 30, .external_lex_state = 8}, - [187] = {.lex_state = 37, .external_lex_state = 2}, - [188] = {.lex_state = 30, .external_lex_state = 8}, - [189] = {.lex_state = 30, .external_lex_state = 7}, - [190] = {.lex_state = 37, .external_lex_state = 8}, - [191] = {.lex_state = 36, .external_lex_state = 2}, - [192] = {.lex_state = 36, .external_lex_state = 2}, - [193] = {.lex_state = 30, .external_lex_state = 6}, - [194] = {.lex_state = 54, .external_lex_state = 8}, - [195] = {.lex_state = 54, .external_lex_state = 7}, - [196] = {.lex_state = 54, .external_lex_state = 7}, + [184] = {.lex_state = 30, .external_lex_state = 7}, + [185] = {.lex_state = 30, .external_lex_state = 8}, + [186] = {.lex_state = 36, .external_lex_state = 8}, + [187] = {.lex_state = 35, .external_lex_state = 2}, + [188] = {.lex_state = 35, .external_lex_state = 2}, + [189] = {.lex_state = 54, .external_lex_state = 7}, + [190] = {.lex_state = 54, .external_lex_state = 7}, + [191] = {.lex_state = 30, .external_lex_state = 6}, + [192] = {.lex_state = 54, .external_lex_state = 7}, + [193] = {.lex_state = 54, .external_lex_state = 7}, + [194] = {.lex_state = 30, .external_lex_state = 6}, + [195] = {.lex_state = 54, .external_lex_state = 8}, + [196] = {.lex_state = 54, .external_lex_state = 8}, [197] = {.lex_state = 54, .external_lex_state = 7}, - [198] = {.lex_state = 30, .external_lex_state = 6}, + [198] = {.lex_state = 54, .external_lex_state = 8}, [199] = {.lex_state = 30, .external_lex_state = 6}, - [200] = {.lex_state = 54, .external_lex_state = 8}, - [201] = {.lex_state = 54, .external_lex_state = 8}, + [200] = {.lex_state = 30, .external_lex_state = 6}, + [201] = {.lex_state = 54, .external_lex_state = 7}, [202] = {.lex_state = 54, .external_lex_state = 8}, - [203] = {.lex_state = 54, .external_lex_state = 8}, + [203] = {.lex_state = 54, .external_lex_state = 2}, [204] = {.lex_state = 54, .external_lex_state = 7}, - [205] = {.lex_state = 54, .external_lex_state = 7}, + [205] = {.lex_state = 30, .external_lex_state = 6}, [206] = {.lex_state = 54, .external_lex_state = 7}, [207] = {.lex_state = 54, .external_lex_state = 2}, [208] = {.lex_state = 54, .external_lex_state = 8}, - [209] = {.lex_state = 54, .external_lex_state = 8}, - [210] = {.lex_state = 30, .external_lex_state = 6}, - [211] = {.lex_state = 30, .external_lex_state = 6}, + [209] = {.lex_state = 54, .external_lex_state = 7}, + [210] = {.lex_state = 54, .external_lex_state = 8}, + [211] = {.lex_state = 54, .external_lex_state = 8}, [212] = {.lex_state = 30, .external_lex_state = 6}, [213] = {.lex_state = 54, .external_lex_state = 8}, - [214] = {.lex_state = 30, .external_lex_state = 6}, - [215] = {.lex_state = 54, .external_lex_state = 8}, - [216] = {.lex_state = 54, .external_lex_state = 8}, - [217] = {.lex_state = 54, .external_lex_state = 7}, - [218] = {.lex_state = 30, .external_lex_state = 6}, + [214] = {.lex_state = 54, .external_lex_state = 8}, + [215] = {.lex_state = 30, .external_lex_state = 6}, + [216] = {.lex_state = 54, .external_lex_state = 2}, + [217] = {.lex_state = 54, .external_lex_state = 8}, + [218] = {.lex_state = 54, .external_lex_state = 7}, [219] = {.lex_state = 54, .external_lex_state = 7}, - [220] = {.lex_state = 54, .external_lex_state = 7}, - [221] = {.lex_state = 54, .external_lex_state = 2}, - [222] = {.lex_state = 54, .external_lex_state = 2}, - [223] = {.lex_state = 54, .external_lex_state = 7}, - [224] = {.lex_state = 54, .external_lex_state = 7}, - [225] = {.lex_state = 54, .external_lex_state = 8}, - [226] = {.lex_state = 31, .external_lex_state = 4}, - [227] = {.lex_state = 31, .external_lex_state = 4}, - [228] = {.lex_state = 54, .external_lex_state = 2}, - [229] = {.lex_state = 54, .external_lex_state = 2}, - [230] = {.lex_state = 30, .external_lex_state = 2}, + [220] = {.lex_state = 30, .external_lex_state = 6}, + [221] = {.lex_state = 54, .external_lex_state = 8}, + [222] = {.lex_state = 31, .external_lex_state = 4}, + [223] = {.lex_state = 31, .external_lex_state = 4}, + [224] = {.lex_state = 54, .external_lex_state = 2}, + [225] = {.lex_state = 54, .external_lex_state = 2}, + [226] = {.lex_state = 30, .external_lex_state = 7}, + [227] = {.lex_state = 30, .external_lex_state = 2}, + [228] = {.lex_state = 30, .external_lex_state = 2}, + [229] = {.lex_state = 30, .external_lex_state = 2}, + [230] = {.lex_state = 30, .external_lex_state = 7}, [231] = {.lex_state = 30, .external_lex_state = 2}, [232] = {.lex_state = 30, .external_lex_state = 2}, - [233] = {.lex_state = 30, .external_lex_state = 2}, - [234] = {.lex_state = 30, .external_lex_state = 2}, + [233] = {.lex_state = 30, .external_lex_state = 7}, + [234] = {.lex_state = 31, .external_lex_state = 2}, [235] = {.lex_state = 30, .external_lex_state = 2}, - [236] = {.lex_state = 30, .external_lex_state = 2}, - [237] = {.lex_state = 30, .external_lex_state = 7}, + [236] = {.lex_state = 30, .external_lex_state = 7}, + [237] = {.lex_state = 30, .external_lex_state = 2}, [238] = {.lex_state = 30, .external_lex_state = 2}, [239] = {.lex_state = 30, .external_lex_state = 2}, - [240] = {.lex_state = 31, .external_lex_state = 2}, + [240] = {.lex_state = 30, .external_lex_state = 7}, [241] = {.lex_state = 30, .external_lex_state = 2}, - [242] = {.lex_state = 31, .external_lex_state = 2}, + [242] = {.lex_state = 30, .external_lex_state = 7}, [243] = {.lex_state = 30, .external_lex_state = 2}, - [244] = {.lex_state = 30, .external_lex_state = 7}, - [245] = {.lex_state = 30, .external_lex_state = 7}, - [246] = {.lex_state = 30, .external_lex_state = 2}, - [247] = {.lex_state = 30, .external_lex_state = 7}, + [244] = {.lex_state = 30, .external_lex_state = 2}, + [245] = {.lex_state = 30, .external_lex_state = 2}, + [246] = {.lex_state = 31, .external_lex_state = 2}, + [247] = {.lex_state = 30, .external_lex_state = 2}, [248] = {.lex_state = 30, .external_lex_state = 7}, [249] = {.lex_state = 30, .external_lex_state = 2}, [250] = {.lex_state = 30, .external_lex_state = 2}, - [251] = {.lex_state = 54, .external_lex_state = 7}, - [252] = {.lex_state = 30, .external_lex_state = 2}, + [251] = {.lex_state = 30, .external_lex_state = 2}, + [252] = {.lex_state = 30, .external_lex_state = 7}, [253] = {.lex_state = 30, .external_lex_state = 2}, - [254] = {.lex_state = 30, .external_lex_state = 7}, + [254] = {.lex_state = 30, .external_lex_state = 2}, [255] = {.lex_state = 30, .external_lex_state = 2}, - [256] = {.lex_state = 30, .external_lex_state = 7}, + [256] = {.lex_state = 30, .external_lex_state = 2}, [257] = {.lex_state = 30, .external_lex_state = 2}, - [258] = {.lex_state = 30, .external_lex_state = 2}, + [258] = {.lex_state = 54, .external_lex_state = 6}, [259] = {.lex_state = 30, .external_lex_state = 2}, - [260] = {.lex_state = 30, .external_lex_state = 7}, + [260] = {.lex_state = 30, .external_lex_state = 2}, [261] = {.lex_state = 30, .external_lex_state = 2}, - [262] = {.lex_state = 30, .external_lex_state = 2}, - [263] = {.lex_state = 30, .external_lex_state = 2}, - [264] = {.lex_state = 30, .external_lex_state = 2}, + [262] = {.lex_state = 30, .external_lex_state = 7}, + [263] = {.lex_state = 54, .external_lex_state = 7}, + [264] = {.lex_state = 30, .external_lex_state = 7}, [265] = {.lex_state = 30, .external_lex_state = 7}, - [266] = {.lex_state = 30, .external_lex_state = 2}, - [267] = {.lex_state = 54, .external_lex_state = 6}, - [268] = {.lex_state = 30, .external_lex_state = 7}, + [266] = {.lex_state = 54, .external_lex_state = 8}, + [267] = {.lex_state = 54, .external_lex_state = 7}, + [268] = {.lex_state = 54, .external_lex_state = 8}, [269] = {.lex_state = 30, .external_lex_state = 7}, [270] = {.lex_state = 54, .external_lex_state = 7}, [271] = {.lex_state = 30, .external_lex_state = 7}, [272] = {.lex_state = 30, .external_lex_state = 7}, - [273] = {.lex_state = 30, .external_lex_state = 7}, + [273] = {.lex_state = 54, .external_lex_state = 7}, [274] = {.lex_state = 30, .external_lex_state = 7}, [275] = {.lex_state = 30, .external_lex_state = 7}, [276] = {.lex_state = 30, .external_lex_state = 7}, [277] = {.lex_state = 30, .external_lex_state = 7}, [278] = {.lex_state = 30, .external_lex_state = 7}, [279] = {.lex_state = 30, .external_lex_state = 7}, - [280] = {.lex_state = 54, .external_lex_state = 7}, - [281] = {.lex_state = 54, .external_lex_state = 7}, - [282] = {.lex_state = 54, .external_lex_state = 8}, - [283] = {.lex_state = 54, .external_lex_state = 7}, - [284] = {.lex_state = 54, .external_lex_state = 7}, + [280] = {.lex_state = 30, .external_lex_state = 7}, + [281] = {.lex_state = 30, .external_lex_state = 7}, + [282] = {.lex_state = 30, .external_lex_state = 7}, + [283] = {.lex_state = 30, .external_lex_state = 7}, + [284] = {.lex_state = 30, .external_lex_state = 7}, [285] = {.lex_state = 30, .external_lex_state = 7}, [286] = {.lex_state = 30, .external_lex_state = 7}, - [287] = {.lex_state = 54, .external_lex_state = 8}, - [288] = {.lex_state = 30, .external_lex_state = 7}, + [287] = {.lex_state = 30, .external_lex_state = 7}, + [288] = {.lex_state = 54, .external_lex_state = 7}, [289] = {.lex_state = 30, .external_lex_state = 7}, - [290] = {.lex_state = 54, .external_lex_state = 7}, + [290] = {.lex_state = 30, .external_lex_state = 7}, [291] = {.lex_state = 54, .external_lex_state = 8}, - [292] = {.lex_state = 54, .external_lex_state = 7}, - [293] = {.lex_state = 54, .external_lex_state = 8}, - [294] = {.lex_state = 30, .external_lex_state = 7}, + [292] = {.lex_state = 54, .external_lex_state = 8}, + [293] = {.lex_state = 54, .external_lex_state = 7}, + [294] = {.lex_state = 54, .external_lex_state = 7}, [295] = {.lex_state = 30, .external_lex_state = 7}, [296] = {.lex_state = 30, .external_lex_state = 7}, - [297] = {.lex_state = 30, .external_lex_state = 7}, - [298] = {.lex_state = 30, .external_lex_state = 7}, - [299] = {.lex_state = 54, .external_lex_state = 7}, + [297] = {.lex_state = 54, .external_lex_state = 7}, + [298] = {.lex_state = 54, .external_lex_state = 8}, + [299] = {.lex_state = 30, .external_lex_state = 7}, [300] = {.lex_state = 30, .external_lex_state = 7}, - [301] = {.lex_state = 54, .external_lex_state = 8}, - [302] = {.lex_state = 30, .external_lex_state = 7}, + [301] = {.lex_state = 30, .external_lex_state = 7}, + [302] = {.lex_state = 54, .external_lex_state = 7}, [303] = {.lex_state = 30, .external_lex_state = 7}, - [304] = {.lex_state = 54, .external_lex_state = 7}, + [304] = {.lex_state = 30, .external_lex_state = 7}, [305] = {.lex_state = 54, .external_lex_state = 7}, - [306] = {.lex_state = 30, .external_lex_state = 7}, - [307] = {.lex_state = 30, .external_lex_state = 7}, + [306] = {.lex_state = 54, .external_lex_state = 7}, + [307] = {.lex_state = 54, .external_lex_state = 8}, [308] = {.lex_state = 54, .external_lex_state = 7}, - [309] = {.lex_state = 30, .external_lex_state = 7}, + [309] = {.lex_state = 54, .external_lex_state = 8}, [310] = {.lex_state = 54, .external_lex_state = 7}, [311] = {.lex_state = 30, .external_lex_state = 7}, - [312] = {.lex_state = 54, .external_lex_state = 8}, - [313] = {.lex_state = 30, .external_lex_state = 7}, + [312] = {.lex_state = 54, .external_lex_state = 7}, + [313] = {.lex_state = 54, .external_lex_state = 8}, [314] = {.lex_state = 30, .external_lex_state = 7}, - [315] = {.lex_state = 54, .external_lex_state = 8}, - [316] = {.lex_state = 54, .external_lex_state = 7}, + [315] = {.lex_state = 54, .external_lex_state = 7}, + [316] = {.lex_state = 30, .external_lex_state = 7}, [317] = {.lex_state = 30, .external_lex_state = 7}, - [318] = {.lex_state = 54, .external_lex_state = 8}, - [319] = {.lex_state = 54, .external_lex_state = 7}, - [320] = {.lex_state = 30, .external_lex_state = 7}, - [321] = {.lex_state = 30, .external_lex_state = 7}, - [322] = {.lex_state = 37, .external_lex_state = 6}, + [318] = {.lex_state = 54, .external_lex_state = 6}, + [319] = {.lex_state = 54, .external_lex_state = 6}, + [320] = {.lex_state = 54, .external_lex_state = 7}, + [321] = {.lex_state = 54, .external_lex_state = 8}, + [322] = {.lex_state = 54, .external_lex_state = 7}, [323] = {.lex_state = 54, .external_lex_state = 8}, - [324] = {.lex_state = 54, .external_lex_state = 8}, - [325] = {.lex_state = 54, .external_lex_state = 6}, + [324] = {.lex_state = 54, .external_lex_state = 6}, + [325] = {.lex_state = 54, .external_lex_state = 8}, [326] = {.lex_state = 54, .external_lex_state = 7}, - [327] = {.lex_state = 54, .external_lex_state = 8}, - [328] = {.lex_state = 54, .external_lex_state = 7}, + [327] = {.lex_state = 54, .external_lex_state = 6}, + [328] = {.lex_state = 54, .external_lex_state = 8}, [329] = {.lex_state = 54, .external_lex_state = 6}, - [330] = {.lex_state = 54, .external_lex_state = 6}, + [330] = {.lex_state = 54, .external_lex_state = 7}, [331] = {.lex_state = 30, .external_lex_state = 2}, [332] = {.lex_state = 54, .external_lex_state = 6}, - [333] = {.lex_state = 54, .external_lex_state = 8}, - [334] = {.lex_state = 54, .external_lex_state = 7}, - [335] = {.lex_state = 54, .external_lex_state = 6}, - [336] = {.lex_state = 54, .external_lex_state = 7}, - [337] = {.lex_state = 54, .external_lex_state = 7}, - [338] = {.lex_state = 54, .external_lex_state = 7}, - [339] = {.lex_state = 54, .external_lex_state = 8}, - [340] = {.lex_state = 54, .external_lex_state = 6}, - [341] = {.lex_state = 54, .external_lex_state = 6}, - [342] = {.lex_state = 54, .external_lex_state = 6}, - [343] = {.lex_state = 54, .external_lex_state = 8}, - [344] = {.lex_state = 30, .external_lex_state = 6}, - [345] = {.lex_state = 54, .external_lex_state = 2}, + [333] = {.lex_state = 54, .external_lex_state = 7}, + [334] = {.lex_state = 54, .external_lex_state = 8}, + [335] = {.lex_state = 54, .external_lex_state = 7}, + [336] = {.lex_state = 54, .external_lex_state = 6}, + [337] = {.lex_state = 54, .external_lex_state = 8}, + [338] = {.lex_state = 54, .external_lex_state = 6}, + [339] = {.lex_state = 36, .external_lex_state = 6}, + [340] = {.lex_state = 30, .external_lex_state = 6}, + [341] = {.lex_state = 30, .external_lex_state = 6}, + [342] = {.lex_state = 30, .external_lex_state = 6}, + [343] = {.lex_state = 30, .external_lex_state = 6}, + [344] = {.lex_state = 54, .external_lex_state = 8}, + [345] = {.lex_state = 30, .external_lex_state = 6}, [346] = {.lex_state = 30, .external_lex_state = 6}, [347] = {.lex_state = 30, .external_lex_state = 6}, - [348] = {.lex_state = 54, .external_lex_state = 4}, - [349] = {.lex_state = 30, .external_lex_state = 6}, - [350] = {.lex_state = 30, .external_lex_state = 6}, - [351] = {.lex_state = 54, .external_lex_state = 8}, - [352] = {.lex_state = 54, .external_lex_state = 2}, - [353] = {.lex_state = 54, .external_lex_state = 7}, + [348] = {.lex_state = 30, .external_lex_state = 6}, + [349] = {.lex_state = 54, .external_lex_state = 2}, + [350] = {.lex_state = 54, .external_lex_state = 2}, + [351] = {.lex_state = 30, .external_lex_state = 6}, + [352] = {.lex_state = 30, .external_lex_state = 6}, + [353] = {.lex_state = 30, .external_lex_state = 6}, [354] = {.lex_state = 30, .external_lex_state = 6}, [355] = {.lex_state = 30, .external_lex_state = 6}, [356] = {.lex_state = 30, .external_lex_state = 6}, - [357] = {.lex_state = 54, .external_lex_state = 2}, + [357] = {.lex_state = 54, .external_lex_state = 7}, [358] = {.lex_state = 30, .external_lex_state = 6}, - [359] = {.lex_state = 30, .external_lex_state = 6}, - [360] = {.lex_state = 30, .external_lex_state = 6}, - [361] = {.lex_state = 54, .external_lex_state = 4}, - [362] = {.lex_state = 30, .external_lex_state = 6}, - [363] = {.lex_state = 30, .external_lex_state = 6}, - [364] = {.lex_state = 30, .external_lex_state = 6}, - [365] = {.lex_state = 30, .external_lex_state = 6}, - [366] = {.lex_state = 30, .external_lex_state = 6}, + [359] = {.lex_state = 54, .external_lex_state = 4}, + [360] = {.lex_state = 54, .external_lex_state = 4}, + [361] = {.lex_state = 30, .external_lex_state = 6}, + [362] = {.lex_state = 54, .external_lex_state = 2}, + [363] = {.lex_state = 54, .external_lex_state = 8}, + [364] = {.lex_state = 54, .external_lex_state = 8}, + [365] = {.lex_state = 54, .external_lex_state = 8}, + [366] = {.lex_state = 54, .external_lex_state = 8}, [367] = {.lex_state = 54, .external_lex_state = 8}, - [368] = {.lex_state = 54, .external_lex_state = 8}, + [368] = {.lex_state = 54, .external_lex_state = 4}, [369] = {.lex_state = 54, .external_lex_state = 8}, [370] = {.lex_state = 54, .external_lex_state = 8}, [371] = {.lex_state = 54, .external_lex_state = 8}, [372] = {.lex_state = 54, .external_lex_state = 8}, - [373] = {.lex_state = 54, .external_lex_state = 8}, - [374] = {.lex_state = 37, .external_lex_state = 7}, - [375] = {.lex_state = 54, .external_lex_state = 8}, + [373] = {.lex_state = 36, .external_lex_state = 7}, + [374] = {.lex_state = 54, .external_lex_state = 8}, + [375] = {.lex_state = 30, .external_lex_state = 2}, [376] = {.lex_state = 54, .external_lex_state = 8}, [377] = {.lex_state = 54, .external_lex_state = 8}, [378] = {.lex_state = 54, .external_lex_state = 8}, - [379] = {.lex_state = 54, .external_lex_state = 4}, - [380] = {.lex_state = 37, .external_lex_state = 7}, + [379] = {.lex_state = 54, .external_lex_state = 8}, + [380] = {.lex_state = 54, .external_lex_state = 8}, [381] = {.lex_state = 54, .external_lex_state = 8}, [382] = {.lex_state = 54, .external_lex_state = 4}, [383] = {.lex_state = 54, .external_lex_state = 8}, [384] = {.lex_state = 54, .external_lex_state = 8}, - [385] = {.lex_state = 54, .external_lex_state = 2}, - [386] = {.lex_state = 54, .external_lex_state = 8}, + [385] = {.lex_state = 54, .external_lex_state = 8}, + [386] = {.lex_state = 54, .external_lex_state = 4}, [387] = {.lex_state = 54, .external_lex_state = 8}, [388] = {.lex_state = 54, .external_lex_state = 8}, [389] = {.lex_state = 54, .external_lex_state = 8}, [390] = {.lex_state = 54, .external_lex_state = 8}, [391] = {.lex_state = 54, .external_lex_state = 8}, [392] = {.lex_state = 54, .external_lex_state = 8}, - [393] = {.lex_state = 30, .external_lex_state = 2}, + [393] = {.lex_state = 54, .external_lex_state = 8}, [394] = {.lex_state = 54, .external_lex_state = 8}, [395] = {.lex_state = 54, .external_lex_state = 8}, [396] = {.lex_state = 54, .external_lex_state = 8}, - [397] = {.lex_state = 54, .external_lex_state = 8}, + [397] = {.lex_state = 36, .external_lex_state = 7}, [398] = {.lex_state = 54, .external_lex_state = 8}, [399] = {.lex_state = 54, .external_lex_state = 8}, [400] = {.lex_state = 54, .external_lex_state = 8}, - [401] = {.lex_state = 54, .external_lex_state = 8}, - [402] = {.lex_state = 54, .external_lex_state = 8}, - [403] = {.lex_state = 54, .external_lex_state = 4}, - [404] = {.lex_state = 54, .external_lex_state = 8}, - [405] = {.lex_state = 54, .external_lex_state = 8}, - [406] = {.lex_state = 54, .external_lex_state = 2}, + [401] = {.lex_state = 54, .external_lex_state = 2}, + [402] = {.lex_state = 54, .external_lex_state = 7}, + [403] = {.lex_state = 54, .external_lex_state = 2}, + [404] = {.lex_state = 36, .external_lex_state = 2}, + [405] = {.lex_state = 54, .external_lex_state = 2}, + [406] = {.lex_state = 54, .external_lex_state = 4}, [407] = {.lex_state = 54, .external_lex_state = 2}, - [408] = {.lex_state = 30, .external_lex_state = 7}, - [409] = {.lex_state = 54, .external_lex_state = 2}, + [408] = {.lex_state = 54, .external_lex_state = 2}, + [409] = {.lex_state = 54, .external_lex_state = 4}, [410] = {.lex_state = 54, .external_lex_state = 2}, - [411] = {.lex_state = 54, .external_lex_state = 8}, - [412] = {.lex_state = 54, .external_lex_state = 7}, + [411] = {.lex_state = 30, .external_lex_state = 2}, + [412] = {.lex_state = 54, .external_lex_state = 2}, [413] = {.lex_state = 54, .external_lex_state = 4}, - [414] = {.lex_state = 54, .external_lex_state = 2}, - [415] = {.lex_state = 54, .external_lex_state = 2}, + [414] = {.lex_state = 54, .external_lex_state = 8}, + [415] = {.lex_state = 54, .external_lex_state = 7}, [416] = {.lex_state = 54, .external_lex_state = 2}, - [417] = {.lex_state = 54, .external_lex_state = 2}, + [417] = {.lex_state = 54, .external_lex_state = 4}, [418] = {.lex_state = 54, .external_lex_state = 2}, - [419] = {.lex_state = 54, .external_lex_state = 7}, + [419] = {.lex_state = 54, .external_lex_state = 8}, [420] = {.lex_state = 54, .external_lex_state = 2}, - [421] = {.lex_state = 54, .external_lex_state = 7}, + [421] = {.lex_state = 54, .external_lex_state = 2}, [422] = {.lex_state = 54, .external_lex_state = 2}, - [423] = {.lex_state = 54, .external_lex_state = 2}, + [423] = {.lex_state = 54, .external_lex_state = 7}, [424] = {.lex_state = 54, .external_lex_state = 2}, [425] = {.lex_state = 54, .external_lex_state = 8}, - [426] = {.lex_state = 54, .external_lex_state = 2}, - [427] = {.lex_state = 54, .external_lex_state = 4}, + [426] = {.lex_state = 54, .external_lex_state = 8}, + [427] = {.lex_state = 54, .external_lex_state = 2}, [428] = {.lex_state = 54, .external_lex_state = 2}, [429] = {.lex_state = 54, .external_lex_state = 2}, - [430] = {.lex_state = 54, .external_lex_state = 8}, - [431] = {.lex_state = 54, .external_lex_state = 4}, - [432] = {.lex_state = 54, .external_lex_state = 2}, + [430] = {.lex_state = 54, .external_lex_state = 2}, + [431] = {.lex_state = 54, .external_lex_state = 2}, + [432] = {.lex_state = 36, .external_lex_state = 2}, [433] = {.lex_state = 54, .external_lex_state = 2}, [434] = {.lex_state = 54, .external_lex_state = 2}, - [435] = {.lex_state = 37, .external_lex_state = 2}, - [436] = {.lex_state = 30, .external_lex_state = 8}, + [435] = {.lex_state = 54, .external_lex_state = 2}, + [436] = {.lex_state = 54, .external_lex_state = 7}, [437] = {.lex_state = 54, .external_lex_state = 2}, [438] = {.lex_state = 54, .external_lex_state = 2}, - [439] = {.lex_state = 54, .external_lex_state = 8}, + [439] = {.lex_state = 54, .external_lex_state = 2}, [440] = {.lex_state = 54, .external_lex_state = 2}, - [441] = {.lex_state = 54, .external_lex_state = 2}, + [441] = {.lex_state = 30, .external_lex_state = 7}, [442] = {.lex_state = 54, .external_lex_state = 2}, - [443] = {.lex_state = 54, .external_lex_state = 8}, + [443] = {.lex_state = 54, .external_lex_state = 2}, [444] = {.lex_state = 54, .external_lex_state = 2}, - [445] = {.lex_state = 54, .external_lex_state = 7}, - [446] = {.lex_state = 54, .external_lex_state = 2}, - [447] = {.lex_state = 54, .external_lex_state = 4}, - [448] = {.lex_state = 54, .external_lex_state = 4}, - [449] = {.lex_state = 54, .external_lex_state = 2}, - [450] = {.lex_state = 54, .external_lex_state = 2}, - [451] = {.lex_state = 54, .external_lex_state = 4}, - [452] = {.lex_state = 30, .external_lex_state = 2}, - [453] = {.lex_state = 37, .external_lex_state = 2}, + [445] = {.lex_state = 54, .external_lex_state = 2}, + [446] = {.lex_state = 54, .external_lex_state = 4}, + [447] = {.lex_state = 54, .external_lex_state = 2}, + [448] = {.lex_state = 54, .external_lex_state = 8}, + [449] = {.lex_state = 30, .external_lex_state = 8}, + [450] = {.lex_state = 54, .external_lex_state = 4}, + [451] = {.lex_state = 54, .external_lex_state = 2}, + [452] = {.lex_state = 54, .external_lex_state = 2}, + [453] = {.lex_state = 54, .external_lex_state = 2}, [454] = {.lex_state = 54, .external_lex_state = 2}, - [455] = {.lex_state = 54, .external_lex_state = 2}, + [455] = {.lex_state = 32, .external_lex_state = 4}, [456] = {.lex_state = 54, .external_lex_state = 2}, [457] = {.lex_state = 54, .external_lex_state = 2}, [458] = {.lex_state = 54, .external_lex_state = 2}, [459] = {.lex_state = 54, .external_lex_state = 2}, [460] = {.lex_state = 54, .external_lex_state = 2}, - [461] = {.lex_state = 54, .external_lex_state = 2}, - [462] = {.lex_state = 54, .external_lex_state = 2}, + [461] = {.lex_state = 32, .external_lex_state = 4}, + [462] = {.lex_state = 32, .external_lex_state = 9}, [463] = {.lex_state = 54, .external_lex_state = 2}, - [464] = {.lex_state = 32, .external_lex_state = 9}, + [464] = {.lex_state = 54, .external_lex_state = 2}, [465] = {.lex_state = 54, .external_lex_state = 2}, [466] = {.lex_state = 54, .external_lex_state = 2}, [467] = {.lex_state = 54, .external_lex_state = 2}, [468] = {.lex_state = 54, .external_lex_state = 2}, - [469] = {.lex_state = 54, .external_lex_state = 2}, - [470] = {.lex_state = 32, .external_lex_state = 4}, + [469] = {.lex_state = 32, .external_lex_state = 9}, + [470] = {.lex_state = 54, .external_lex_state = 2}, [471] = {.lex_state = 54, .external_lex_state = 2}, [472] = {.lex_state = 54, .external_lex_state = 2}, [473] = {.lex_state = 54, .external_lex_state = 2}, [474] = {.lex_state = 54, .external_lex_state = 2}, - [475] = {.lex_state = 32, .external_lex_state = 4}, - [476] = {.lex_state = 32, .external_lex_state = 9}, + [475] = {.lex_state = 54, .external_lex_state = 2}, + [476] = {.lex_state = 54, .external_lex_state = 2}, [477] = {.lex_state = 54, .external_lex_state = 2}, [478] = {.lex_state = 54, .external_lex_state = 2}, [479] = {.lex_state = 54, .external_lex_state = 2}, @@ -10108,8 +10415,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 54, .external_lex_state = 2}, [483] = {.lex_state = 54, .external_lex_state = 2}, [484] = {.lex_state = 54, .external_lex_state = 2}, - [485] = {.lex_state = 54, .external_lex_state = 2}, - [486] = {.lex_state = 54, .external_lex_state = 2}, + [485] = {.lex_state = 55, .external_lex_state = 3}, + [486] = {.lex_state = 56, .external_lex_state = 3}, [487] = {.lex_state = 54, .external_lex_state = 2}, [488] = {.lex_state = 54, .external_lex_state = 2}, [489] = {.lex_state = 54, .external_lex_state = 2}, @@ -10147,17 +10454,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [521] = {.lex_state = 54, .external_lex_state = 2}, [522] = {.lex_state = 54, .external_lex_state = 2}, [523] = {.lex_state = 54, .external_lex_state = 2}, - [524] = {.lex_state = 54, .external_lex_state = 2}, + [524] = {.lex_state = 56, .external_lex_state = 2}, [525] = {.lex_state = 54, .external_lex_state = 2}, [526] = {.lex_state = 54, .external_lex_state = 2}, - [527] = {.lex_state = 55, .external_lex_state = 2}, + [527] = {.lex_state = 54, .external_lex_state = 2}, [528] = {.lex_state = 56, .external_lex_state = 2}, - [529] = {.lex_state = 54, .external_lex_state = 2}, + [529] = {.lex_state = 55, .external_lex_state = 2}, [530] = {.lex_state = 54, .external_lex_state = 2}, [531] = {.lex_state = 54, .external_lex_state = 2}, [532] = {.lex_state = 54, .external_lex_state = 2}, [533] = {.lex_state = 54, .external_lex_state = 2}, - [534] = {.lex_state = 55, .external_lex_state = 3}, + [534] = {.lex_state = 55, .external_lex_state = 2}, [535] = {.lex_state = 54, .external_lex_state = 2}, [536] = {.lex_state = 54, .external_lex_state = 2}, [537] = {.lex_state = 54, .external_lex_state = 2}, @@ -10166,18 +10473,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [540] = {.lex_state = 54, .external_lex_state = 2}, [541] = {.lex_state = 54, .external_lex_state = 2}, [542] = {.lex_state = 54, .external_lex_state = 2}, - [543] = {.lex_state = 56, .external_lex_state = 3}, - [544] = {.lex_state = 56, .external_lex_state = 2}, + [543] = {.lex_state = 54, .external_lex_state = 2}, + [544] = {.lex_state = 54, .external_lex_state = 2}, [545] = {.lex_state = 54, .external_lex_state = 2}, - [546] = {.lex_state = 55, .external_lex_state = 2}, + [546] = {.lex_state = 54, .external_lex_state = 2}, [547] = {.lex_state = 54, .external_lex_state = 2}, [548] = {.lex_state = 54, .external_lex_state = 2}, [549] = {.lex_state = 54, .external_lex_state = 2}, [550] = {.lex_state = 54, .external_lex_state = 2}, - [551] = {.lex_state = 54, .external_lex_state = 2}, + [551] = {.lex_state = 56, .external_lex_state = 3}, [552] = {.lex_state = 54, .external_lex_state = 2}, [553] = {.lex_state = 54, .external_lex_state = 2}, - [554] = {.lex_state = 54, .external_lex_state = 2}, + [554] = {.lex_state = 55, .external_lex_state = 3}, [555] = {.lex_state = 54, .external_lex_state = 2}, [556] = {.lex_state = 54, .external_lex_state = 2}, [557] = {.lex_state = 54, .external_lex_state = 2}, @@ -10224,160 +10531,160 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [598] = {.lex_state = 54, .external_lex_state = 2}, [599] = {.lex_state = 54, .external_lex_state = 2}, [600] = {.lex_state = 54, .external_lex_state = 2}, - [601] = {.lex_state = 54, .external_lex_state = 2}, - [602] = {.lex_state = 54, .external_lex_state = 2}, - [603] = {.lex_state = 55, .external_lex_state = 3}, - [604] = {.lex_state = 56, .external_lex_state = 3}, - [605] = {.lex_state = 54, .external_lex_state = 2}, - [606] = {.lex_state = 54, .external_lex_state = 2}, + [601] = {.lex_state = 32, .external_lex_state = 9}, + [602] = {.lex_state = 55, .external_lex_state = 3}, + [603] = {.lex_state = 32, .external_lex_state = 9}, + [604] = {.lex_state = 54, .external_lex_state = 3}, + [605] = {.lex_state = 54, .external_lex_state = 3}, + [606] = {.lex_state = 54, .external_lex_state = 3}, [607] = {.lex_state = 54, .external_lex_state = 2}, [608] = {.lex_state = 54, .external_lex_state = 2}, - [609] = {.lex_state = 54, .external_lex_state = 2}, - [610] = {.lex_state = 32, .external_lex_state = 9}, - [611] = {.lex_state = 56, .external_lex_state = 2}, + [609] = {.lex_state = 54, .external_lex_state = 3}, + [610] = {.lex_state = 54, .external_lex_state = 2}, + [611] = {.lex_state = 56, .external_lex_state = 3}, [612] = {.lex_state = 32, .external_lex_state = 9}, - [613] = {.lex_state = 55, .external_lex_state = 2}, + [613] = {.lex_state = 32, .external_lex_state = 9}, [614] = {.lex_state = 54, .external_lex_state = 2}, - [615] = {.lex_state = 54, .external_lex_state = 2}, - [616] = {.lex_state = 54, .external_lex_state = 2}, - [617] = {.lex_state = 54, .external_lex_state = 2}, - [618] = {.lex_state = 32, .external_lex_state = 9}, - [619] = {.lex_state = 32, .external_lex_state = 9}, - [620] = {.lex_state = 32, .external_lex_state = 9}, - [621] = {.lex_state = 54, .external_lex_state = 3}, - [622] = {.lex_state = 54, .external_lex_state = 3}, - [623] = {.lex_state = 54, .external_lex_state = 3}, - [624] = {.lex_state = 56, .external_lex_state = 3}, - [625] = {.lex_state = 54, .external_lex_state = 3}, - [626] = {.lex_state = 55, .external_lex_state = 3}, + [615] = {.lex_state = 32, .external_lex_state = 9}, + [616] = {.lex_state = 56, .external_lex_state = 2}, + [617] = {.lex_state = 55, .external_lex_state = 2}, + [618] = {.lex_state = 33, .external_lex_state = 9}, + [619] = {.lex_state = 33, .external_lex_state = 9}, + [620] = {.lex_state = 33, .external_lex_state = 9}, + [621] = {.lex_state = 54, .external_lex_state = 2}, + [622] = {.lex_state = 33, .external_lex_state = 9}, + [623] = {.lex_state = 33, .external_lex_state = 9}, + [624] = {.lex_state = 33, .external_lex_state = 9}, + [625] = {.lex_state = 33, .external_lex_state = 9}, + [626] = {.lex_state = 33, .external_lex_state = 9}, [627] = {.lex_state = 33, .external_lex_state = 9}, [628] = {.lex_state = 33, .external_lex_state = 9}, - [629] = {.lex_state = 54, .external_lex_state = 2}, + [629] = {.lex_state = 54, .external_lex_state = 3}, [630] = {.lex_state = 33, .external_lex_state = 9}, [631] = {.lex_state = 33, .external_lex_state = 9}, - [632] = {.lex_state = 54, .external_lex_state = 3}, + [632] = {.lex_state = 33, .external_lex_state = 9}, [633] = {.lex_state = 33, .external_lex_state = 9}, [634] = {.lex_state = 33, .external_lex_state = 9}, [635] = {.lex_state = 33, .external_lex_state = 9}, [636] = {.lex_state = 33, .external_lex_state = 9}, [637] = {.lex_state = 33, .external_lex_state = 9}, [638] = {.lex_state = 33, .external_lex_state = 9}, - [639] = {.lex_state = 33, .external_lex_state = 9}, - [640] = {.lex_state = 33, .external_lex_state = 9}, - [641] = {.lex_state = 33, .external_lex_state = 9}, - [642] = {.lex_state = 33, .external_lex_state = 9}, - [643] = {.lex_state = 33, .external_lex_state = 9}, - [644] = {.lex_state = 33, .external_lex_state = 9}, - [645] = {.lex_state = 33, .external_lex_state = 9}, - [646] = {.lex_state = 33, .external_lex_state = 9}, - [647] = {.lex_state = 33, .external_lex_state = 9}, - [648] = {.lex_state = 54, .external_lex_state = 3}, - [649] = {.lex_state = 55, .external_lex_state = 2}, - [650] = {.lex_state = 54, .external_lex_state = 2}, - [651] = {.lex_state = 56, .external_lex_state = 3}, - [652] = {.lex_state = 55, .external_lex_state = 2}, - [653] = {.lex_state = 55, .external_lex_state = 3}, - [654] = {.lex_state = 55, .external_lex_state = 2}, + [639] = {.lex_state = 55, .external_lex_state = 3}, + [640] = {.lex_state = 55, .external_lex_state = 2}, + [641] = {.lex_state = 55, .external_lex_state = 2}, + [642] = {.lex_state = 56, .external_lex_state = 2}, + [643] = {.lex_state = 56, .external_lex_state = 3}, + [644] = {.lex_state = 56, .external_lex_state = 3}, + [645] = {.lex_state = 56, .external_lex_state = 3}, + [646] = {.lex_state = 56, .external_lex_state = 2}, + [647] = {.lex_state = 55, .external_lex_state = 2}, + [648] = {.lex_state = 55, .external_lex_state = 3}, + [649] = {.lex_state = 56, .external_lex_state = 3}, + [650] = {.lex_state = 55, .external_lex_state = 2}, + [651] = {.lex_state = 54, .external_lex_state = 6}, + [652] = {.lex_state = 55, .external_lex_state = 3}, + [653] = {.lex_state = 56, .external_lex_state = 2}, + [654] = {.lex_state = 54, .external_lex_state = 3}, [655] = {.lex_state = 55, .external_lex_state = 3}, [656] = {.lex_state = 56, .external_lex_state = 2}, [657] = {.lex_state = 55, .external_lex_state = 3}, [658] = {.lex_state = 56, .external_lex_state = 3}, - [659] = {.lex_state = 56, .external_lex_state = 3}, - [660] = {.lex_state = 55, .external_lex_state = 3}, - [661] = {.lex_state = 56, .external_lex_state = 3}, - [662] = {.lex_state = 55, .external_lex_state = 3}, - [663] = {.lex_state = 55, .external_lex_state = 3}, - [664] = {.lex_state = 55, .external_lex_state = 3}, - [665] = {.lex_state = 56, .external_lex_state = 3}, - [666] = {.lex_state = 54, .external_lex_state = 3}, - [667] = {.lex_state = 55, .external_lex_state = 3}, - [668] = {.lex_state = 54, .external_lex_state = 6}, - [669] = {.lex_state = 56, .external_lex_state = 2}, - [670] = {.lex_state = 55, .external_lex_state = 2}, - [671] = {.lex_state = 54, .external_lex_state = 2}, - [672] = {.lex_state = 55, .external_lex_state = 2}, - [673] = {.lex_state = 55, .external_lex_state = 2}, - [674] = {.lex_state = 56, .external_lex_state = 2}, + [659] = {.lex_state = 54, .external_lex_state = 2}, + [660] = {.lex_state = 56, .external_lex_state = 3}, + [661] = {.lex_state = 55, .external_lex_state = 3}, + [662] = {.lex_state = 56, .external_lex_state = 2}, + [663] = {.lex_state = 54, .external_lex_state = 3}, + [664] = {.lex_state = 54, .external_lex_state = 2}, + [665] = {.lex_state = 55, .external_lex_state = 3}, + [666] = {.lex_state = 56, .external_lex_state = 2}, + [667] = {.lex_state = 54, .external_lex_state = 2}, + [668] = {.lex_state = 55, .external_lex_state = 2}, + [669] = {.lex_state = 55, .external_lex_state = 3}, + [670] = {.lex_state = 55, .external_lex_state = 3}, + [671] = {.lex_state = 56, .external_lex_state = 3}, + [672] = {.lex_state = 54, .external_lex_state = 2}, + [673] = {.lex_state = 54, .external_lex_state = 3}, + [674] = {.lex_state = 54, .external_lex_state = 2}, [675] = {.lex_state = 56, .external_lex_state = 3}, - [676] = {.lex_state = 56, .external_lex_state = 3}, - [677] = {.lex_state = 55, .external_lex_state = 3}, - [678] = {.lex_state = 54, .external_lex_state = 6}, - [679] = {.lex_state = 55, .external_lex_state = 3}, - [680] = {.lex_state = 55, .external_lex_state = 2}, + [676] = {.lex_state = 55, .external_lex_state = 2}, + [677] = {.lex_state = 54, .external_lex_state = 6}, + [678] = {.lex_state = 56, .external_lex_state = 2}, + [679] = {.lex_state = 56, .external_lex_state = 3}, + [680] = {.lex_state = 56, .external_lex_state = 2}, [681] = {.lex_state = 54, .external_lex_state = 3}, - [682] = {.lex_state = 55, .external_lex_state = 2}, - [683] = {.lex_state = 55, .external_lex_state = 2}, - [684] = {.lex_state = 54, .external_lex_state = 2}, - [685] = {.lex_state = 56, .external_lex_state = 2}, - [686] = {.lex_state = 56, .external_lex_state = 3}, - [687] = {.lex_state = 55, .external_lex_state = 2}, - [688] = {.lex_state = 56, .external_lex_state = 3}, - [689] = {.lex_state = 56, .external_lex_state = 2}, - [690] = {.lex_state = 54, .external_lex_state = 2}, - [691] = {.lex_state = 55, .external_lex_state = 2}, - [692] = {.lex_state = 54, .external_lex_state = 2}, - [693] = {.lex_state = 56, .external_lex_state = 2}, - [694] = {.lex_state = 54, .external_lex_state = 3}, - [695] = {.lex_state = 55, .external_lex_state = 3}, - [696] = {.lex_state = 56, .external_lex_state = 2}, - [697] = {.lex_state = 56, .external_lex_state = 2}, - [698] = {.lex_state = 54, .external_lex_state = 3}, - [699] = {.lex_state = 56, .external_lex_state = 2}, - [700] = {.lex_state = 54, .external_lex_state = 3}, - [701] = {.lex_state = 54, .external_lex_state = 2}, - [702] = {.lex_state = 54, .external_lex_state = 3}, + [682] = {.lex_state = 56, .external_lex_state = 2}, + [683] = {.lex_state = 56, .external_lex_state = 2}, + [684] = {.lex_state = 55, .external_lex_state = 2}, + [685] = {.lex_state = 55, .external_lex_state = 2}, + [686] = {.lex_state = 56, .external_lex_state = 2}, + [687] = {.lex_state = 54, .external_lex_state = 3}, + [688] = {.lex_state = 55, .external_lex_state = 2}, + [689] = {.lex_state = 56, .external_lex_state = 3}, + [690] = {.lex_state = 56, .external_lex_state = 3}, + [691] = {.lex_state = 54, .external_lex_state = 3}, + [692] = {.lex_state = 54, .external_lex_state = 3}, + [693] = {.lex_state = 54, .external_lex_state = 2}, + [694] = {.lex_state = 54, .external_lex_state = 2}, + [695] = {.lex_state = 54, .external_lex_state = 2}, + [696] = {.lex_state = 54, .external_lex_state = 2}, + [697] = {.lex_state = 54, .external_lex_state = 2}, + [698] = {.lex_state = 54, .external_lex_state = 2}, + [699] = {.lex_state = 54, .external_lex_state = 3}, + [700] = {.lex_state = 54, .external_lex_state = 2}, + [701] = {.lex_state = 54, .external_lex_state = 3}, + [702] = {.lex_state = 54, .external_lex_state = 2}, [703] = {.lex_state = 54, .external_lex_state = 3}, [704] = {.lex_state = 54, .external_lex_state = 2}, [705] = {.lex_state = 54, .external_lex_state = 2}, [706] = {.lex_state = 54, .external_lex_state = 3}, - [707] = {.lex_state = 54, .external_lex_state = 2}, + [707] = {.lex_state = 54, .external_lex_state = 3}, [708] = {.lex_state = 54, .external_lex_state = 3}, - [709] = {.lex_state = 54, .external_lex_state = 2}, - [710] = {.lex_state = 54, .external_lex_state = 2}, - [711] = {.lex_state = 54, .external_lex_state = 3}, - [712] = {.lex_state = 54, .external_lex_state = 2}, - [713] = {.lex_state = 54, .external_lex_state = 2}, - [714] = {.lex_state = 54, .external_lex_state = 3}, + [709] = {.lex_state = 54, .external_lex_state = 3}, + [710] = {.lex_state = 54, .external_lex_state = 3}, + [711] = {.lex_state = 54, .external_lex_state = 2}, + [712] = {.lex_state = 54, .external_lex_state = 3}, + [713] = {.lex_state = 54, .external_lex_state = 3}, + [714] = {.lex_state = 54, .external_lex_state = 7}, [715] = {.lex_state = 54, .external_lex_state = 2}, [716] = {.lex_state = 54, .external_lex_state = 2}, [717] = {.lex_state = 54, .external_lex_state = 3}, - [718] = {.lex_state = 54, .external_lex_state = 2}, - [719] = {.lex_state = 54, .external_lex_state = 3}, + [718] = {.lex_state = 54, .external_lex_state = 7}, + [719] = {.lex_state = 54, .external_lex_state = 2}, [720] = {.lex_state = 54, .external_lex_state = 3}, - [721] = {.lex_state = 54, .external_lex_state = 3}, + [721] = {.lex_state = 54, .external_lex_state = 2}, [722] = {.lex_state = 54, .external_lex_state = 2}, - [723] = {.lex_state = 54, .external_lex_state = 3}, - [724] = {.lex_state = 54, .external_lex_state = 2}, - [725] = {.lex_state = 54, .external_lex_state = 7}, - [726] = {.lex_state = 54, .external_lex_state = 3}, - [727] = {.lex_state = 54, .external_lex_state = 7}, - [728] = {.lex_state = 54, .external_lex_state = 3}, - [729] = {.lex_state = 54, .external_lex_state = 3}, + [723] = {.lex_state = 54, .external_lex_state = 2}, + [724] = {.lex_state = 54, .external_lex_state = 3}, + [725] = {.lex_state = 54, .external_lex_state = 2}, + [726] = {.lex_state = 54, .external_lex_state = 2}, + [727] = {.lex_state = 54, .external_lex_state = 2}, + [728] = {.lex_state = 54, .external_lex_state = 2}, + [729] = {.lex_state = 54, .external_lex_state = 2}, [730] = {.lex_state = 54, .external_lex_state = 3}, - [731] = {.lex_state = 54, .external_lex_state = 3}, - [732] = {.lex_state = 54, .external_lex_state = 3}, - [733] = {.lex_state = 54, .external_lex_state = 3}, + [731] = {.lex_state = 54, .external_lex_state = 2}, + [732] = {.lex_state = 54, .external_lex_state = 2}, + [733] = {.lex_state = 54, .external_lex_state = 2}, [734] = {.lex_state = 54, .external_lex_state = 2}, [735] = {.lex_state = 54, .external_lex_state = 2}, - [736] = {.lex_state = 54, .external_lex_state = 2}, + [736] = {.lex_state = 54, .external_lex_state = 8}, [737] = {.lex_state = 54, .external_lex_state = 2}, [738] = {.lex_state = 54, .external_lex_state = 2}, [739] = {.lex_state = 54, .external_lex_state = 2}, [740] = {.lex_state = 54, .external_lex_state = 2}, - [741] = {.lex_state = 54, .external_lex_state = 2}, + [741] = {.lex_state = 54, .external_lex_state = 3}, [742] = {.lex_state = 54, .external_lex_state = 3}, - [743] = {.lex_state = 54, .external_lex_state = 2}, + [743] = {.lex_state = 54, .external_lex_state = 3}, [744] = {.lex_state = 54, .external_lex_state = 2}, [745] = {.lex_state = 54, .external_lex_state = 2}, [746] = {.lex_state = 54, .external_lex_state = 2}, [747] = {.lex_state = 54, .external_lex_state = 2}, - [748] = {.lex_state = 54, .external_lex_state = 3}, - [749] = {.lex_state = 54, .external_lex_state = 3}, - [750] = {.lex_state = 54, .external_lex_state = 3}, + [748] = {.lex_state = 54, .external_lex_state = 2}, + [749] = {.lex_state = 54, .external_lex_state = 2}, + [750] = {.lex_state = 54, .external_lex_state = 2}, [751] = {.lex_state = 54, .external_lex_state = 2}, - [752] = {.lex_state = 54, .external_lex_state = 3}, + [752] = {.lex_state = 54, .external_lex_state = 2}, [753] = {.lex_state = 54, .external_lex_state = 2}, - [754] = {.lex_state = 54, .external_lex_state = 2}, + [754] = {.lex_state = 54, .external_lex_state = 3}, [755] = {.lex_state = 54, .external_lex_state = 2}, [756] = {.lex_state = 54, .external_lex_state = 2}, [757] = {.lex_state = 54, .external_lex_state = 2}, @@ -10386,93 +10693,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [760] = {.lex_state = 54, .external_lex_state = 2}, [761] = {.lex_state = 54, .external_lex_state = 2}, [762] = {.lex_state = 54, .external_lex_state = 2}, - [763] = {.lex_state = 54, .external_lex_state = 3}, - [764] = {.lex_state = 54, .external_lex_state = 3}, + [763] = {.lex_state = 54, .external_lex_state = 2}, + [764] = {.lex_state = 54, .external_lex_state = 2}, [765] = {.lex_state = 54, .external_lex_state = 3}, [766] = {.lex_state = 54, .external_lex_state = 3}, - [767] = {.lex_state = 54, .external_lex_state = 3}, - [768] = {.lex_state = 54, .external_lex_state = 2}, - [769] = {.lex_state = 54, .external_lex_state = 3}, - [770] = {.lex_state = 54, .external_lex_state = 2}, + [767] = {.lex_state = 54, .external_lex_state = 2}, + [768] = {.lex_state = 54, .external_lex_state = 3}, + [769] = {.lex_state = 54, .external_lex_state = 2}, + [770] = {.lex_state = 54, .external_lex_state = 3}, [771] = {.lex_state = 54, .external_lex_state = 3}, - [772] = {.lex_state = 54, .external_lex_state = 2}, - [773] = {.lex_state = 54, .external_lex_state = 2}, + [772] = {.lex_state = 54, .external_lex_state = 7}, + [773] = {.lex_state = 54, .external_lex_state = 3}, [774] = {.lex_state = 54, .external_lex_state = 2}, [775] = {.lex_state = 54, .external_lex_state = 3}, [776] = {.lex_state = 54, .external_lex_state = 3}, - [777] = {.lex_state = 54, .external_lex_state = 2}, + [777] = {.lex_state = 54, .external_lex_state = 3}, [778] = {.lex_state = 54, .external_lex_state = 3}, [779] = {.lex_state = 54, .external_lex_state = 3}, [780] = {.lex_state = 54, .external_lex_state = 3}, - [781] = {.lex_state = 54, .external_lex_state = 3}, - [782] = {.lex_state = 54, .external_lex_state = 7}, - [783] = {.lex_state = 54, .external_lex_state = 2}, - [784] = {.lex_state = 54, .external_lex_state = 2}, - [785] = {.lex_state = 54, .external_lex_state = 2}, + [781] = {.lex_state = 54, .external_lex_state = 8}, + [782] = {.lex_state = 54, .external_lex_state = 3}, + [783] = {.lex_state = 54, .external_lex_state = 3}, + [784] = {.lex_state = 54, .external_lex_state = 3}, + [785] = {.lex_state = 54, .external_lex_state = 3}, [786] = {.lex_state = 54, .external_lex_state = 3}, [787] = {.lex_state = 54, .external_lex_state = 2}, [788] = {.lex_state = 54, .external_lex_state = 3}, - [789] = {.lex_state = 54, .external_lex_state = 2}, - [790] = {.lex_state = 54, .external_lex_state = 2}, - [791] = {.lex_state = 54, .external_lex_state = 3}, - [792] = {.lex_state = 54, .external_lex_state = 3}, + [789] = {.lex_state = 54, .external_lex_state = 3}, + [790] = {.lex_state = 54, .external_lex_state = 3}, + [791] = {.lex_state = 54, .external_lex_state = 2}, + [792] = {.lex_state = 54, .external_lex_state = 2}, [793] = {.lex_state = 54, .external_lex_state = 2}, [794] = {.lex_state = 54, .external_lex_state = 3}, - [795] = {.lex_state = 54, .external_lex_state = 3}, + [795] = {.lex_state = 54, .external_lex_state = 2}, [796] = {.lex_state = 54, .external_lex_state = 2}, [797] = {.lex_state = 54, .external_lex_state = 2}, - [798] = {.lex_state = 54, .external_lex_state = 2}, + [798] = {.lex_state = 54, .external_lex_state = 3}, [799] = {.lex_state = 54, .external_lex_state = 3}, [800] = {.lex_state = 54, .external_lex_state = 3}, [801] = {.lex_state = 54, .external_lex_state = 2}, - [802] = {.lex_state = 54, .external_lex_state = 2}, - [803] = {.lex_state = 54, .external_lex_state = 3}, - [804] = {.lex_state = 54, .external_lex_state = 2}, + [802] = {.lex_state = 54, .external_lex_state = 3}, + [803] = {.lex_state = 54, .external_lex_state = 2}, + [804] = {.lex_state = 54, .external_lex_state = 3}, [805] = {.lex_state = 54, .external_lex_state = 3}, - [806] = {.lex_state = 54, .external_lex_state = 8}, + [806] = {.lex_state = 54, .external_lex_state = 3}, [807] = {.lex_state = 54, .external_lex_state = 3}, - [808] = {.lex_state = 54, .external_lex_state = 2}, + [808] = {.lex_state = 54, .external_lex_state = 3}, [809] = {.lex_state = 54, .external_lex_state = 3}, - [810] = {.lex_state = 54, .external_lex_state = 2}, - [811] = {.lex_state = 54, .external_lex_state = 2}, + [810] = {.lex_state = 54, .external_lex_state = 3}, + [811] = {.lex_state = 54, .external_lex_state = 3}, [812] = {.lex_state = 54, .external_lex_state = 3}, [813] = {.lex_state = 54, .external_lex_state = 2}, - [814] = {.lex_state = 54, .external_lex_state = 2}, + [814] = {.lex_state = 54, .external_lex_state = 3}, [815] = {.lex_state = 54, .external_lex_state = 2}, - [816] = {.lex_state = 54, .external_lex_state = 2}, - [817] = {.lex_state = 54, .external_lex_state = 3}, - [818] = {.lex_state = 54, .external_lex_state = 7}, + [816] = {.lex_state = 54, .external_lex_state = 3}, + [817] = {.lex_state = 54, .external_lex_state = 2}, + [818] = {.lex_state = 54, .external_lex_state = 2}, [819] = {.lex_state = 54, .external_lex_state = 2}, [820] = {.lex_state = 54, .external_lex_state = 3}, [821] = {.lex_state = 54, .external_lex_state = 3}, - [822] = {.lex_state = 54, .external_lex_state = 3}, - [823] = {.lex_state = 54, .external_lex_state = 2}, - [824] = {.lex_state = 54, .external_lex_state = 3}, - [825] = {.lex_state = 54, .external_lex_state = 3}, + [822] = {.lex_state = 54, .external_lex_state = 2}, + [823] = {.lex_state = 54, .external_lex_state = 3}, + [824] = {.lex_state = 54, .external_lex_state = 2}, + [825] = {.lex_state = 54, .external_lex_state = 2}, [826] = {.lex_state = 54, .external_lex_state = 3}, - [827] = {.lex_state = 54, .external_lex_state = 3}, + [827] = {.lex_state = 54, .external_lex_state = 2}, [828] = {.lex_state = 54, .external_lex_state = 2}, [829] = {.lex_state = 54, .external_lex_state = 3}, - [830] = {.lex_state = 54, .external_lex_state = 3}, + [830] = {.lex_state = 54, .external_lex_state = 2}, [831] = {.lex_state = 54, .external_lex_state = 2}, [832] = {.lex_state = 54, .external_lex_state = 3}, - [833] = {.lex_state = 54, .external_lex_state = 3}, - [834] = {.lex_state = 54, .external_lex_state = 2}, - [835] = {.lex_state = 54, .external_lex_state = 2}, + [833] = {.lex_state = 54, .external_lex_state = 2}, + [834] = {.lex_state = 54, .external_lex_state = 7}, + [835] = {.lex_state = 54, .external_lex_state = 3}, [836] = {.lex_state = 54, .external_lex_state = 2}, - [837] = {.lex_state = 54, .external_lex_state = 2}, + [837] = {.lex_state = 54, .external_lex_state = 3}, [838] = {.lex_state = 54, .external_lex_state = 2}, [839] = {.lex_state = 54, .external_lex_state = 2}, [840] = {.lex_state = 54, .external_lex_state = 3}, - [841] = {.lex_state = 54, .external_lex_state = 2}, + [841] = {.lex_state = 54, .external_lex_state = 3}, [842] = {.lex_state = 54, .external_lex_state = 3}, [843] = {.lex_state = 54, .external_lex_state = 2}, - [844] = {.lex_state = 54, .external_lex_state = 3}, - [845] = {.lex_state = 54, .external_lex_state = 3}, - [846] = {.lex_state = 54, .external_lex_state = 3}, + [844] = {.lex_state = 54, .external_lex_state = 2}, + [845] = {.lex_state = 54, .external_lex_state = 2}, + [846] = {.lex_state = 54, .external_lex_state = 2}, [847] = {.lex_state = 54, .external_lex_state = 2}, [848] = {.lex_state = 54, .external_lex_state = 2}, - [849] = {.lex_state = 54, .external_lex_state = 8}, + [849] = {.lex_state = 54, .external_lex_state = 7}, [850] = {.lex_state = 54, .external_lex_state = 2}, [851] = {.lex_state = 54, .external_lex_state = 2}, [852] = {.lex_state = 54, .external_lex_state = 2}, @@ -10481,7 +10788,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [855] = {.lex_state = 54, .external_lex_state = 2}, [856] = {.lex_state = 54, .external_lex_state = 2}, [857] = {.lex_state = 54, .external_lex_state = 2}, - [858] = {.lex_state = 54, .external_lex_state = 7}, + [858] = {.lex_state = 54, .external_lex_state = 2}, [859] = {.lex_state = 54, .external_lex_state = 2}, [860] = {.lex_state = 54, .external_lex_state = 2}, [861] = {.lex_state = 54, .external_lex_state = 2}, @@ -10590,1582 +10897,1858 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [964] = {.lex_state = 54, .external_lex_state = 2}, [965] = {.lex_state = 54, .external_lex_state = 2}, [966] = {.lex_state = 54, .external_lex_state = 2}, - [967] = {.lex_state = 54, .external_lex_state = 2}, - [968] = {.lex_state = 54, .external_lex_state = 2}, - [969] = {.lex_state = 54, .external_lex_state = 2}, - [970] = {.lex_state = 54, .external_lex_state = 2}, - [971] = {.lex_state = 54, .external_lex_state = 2}, - [972] = {.lex_state = 54, .external_lex_state = 2}, - [973] = {.lex_state = 54, .external_lex_state = 2}, - [974] = {.lex_state = 54, .external_lex_state = 2}, - [975] = {.lex_state = 54, .external_lex_state = 2}, - [976] = {.lex_state = 34, .external_lex_state = 9}, - [977] = {.lex_state = 34, .external_lex_state = 4}, - [978] = {.lex_state = 34, .external_lex_state = 4}, - [979] = {.lex_state = 34, .external_lex_state = 4}, - [980] = {.lex_state = 34, .external_lex_state = 9}, - [981] = {.lex_state = 34, .external_lex_state = 9}, - [982] = {.lex_state = 34, .external_lex_state = 9}, - [983] = {.lex_state = 34, .external_lex_state = 9}, - [984] = {.lex_state = 34, .external_lex_state = 6}, - [985] = {.lex_state = 34, .external_lex_state = 9}, - [986] = {.lex_state = 34, .external_lex_state = 9}, - [987] = {.lex_state = 34, .external_lex_state = 9}, - [988] = {.lex_state = 34, .external_lex_state = 9}, - [989] = {.lex_state = 34, .external_lex_state = 6}, - [990] = {.lex_state = 34, .external_lex_state = 10}, - [991] = {.lex_state = 34, .external_lex_state = 6}, - [992] = {.lex_state = 34, .external_lex_state = 6}, - [993] = {.lex_state = 34, .external_lex_state = 9}, - [994] = {.lex_state = 34, .external_lex_state = 9}, - [995] = {.lex_state = 34, .external_lex_state = 10}, - [996] = {.lex_state = 34, .external_lex_state = 9}, - [997] = {.lex_state = 34, .external_lex_state = 9}, - [998] = {.lex_state = 34, .external_lex_state = 6}, - [999] = {.lex_state = 34, .external_lex_state = 6}, - [1000] = {.lex_state = 34, .external_lex_state = 4}, - [1001] = {.lex_state = 34, .external_lex_state = 10}, - [1002] = {.lex_state = 34, .external_lex_state = 10}, - [1003] = {.lex_state = 34, .external_lex_state = 10}, - [1004] = {.lex_state = 34, .external_lex_state = 11}, - [1005] = {.lex_state = 34, .external_lex_state = 10}, - [1006] = {.lex_state = 34, .external_lex_state = 7}, - [1007] = {.lex_state = 34, .external_lex_state = 10}, - [1008] = {.lex_state = 34, .external_lex_state = 10}, - [1009] = {.lex_state = 34, .external_lex_state = 10}, - [1010] = {.lex_state = 34, .external_lex_state = 10}, - [1011] = {.lex_state = 34, .external_lex_state = 10}, - [1012] = {.lex_state = 34, .external_lex_state = 10}, - [1013] = {.lex_state = 34, .external_lex_state = 10}, - [1014] = {.lex_state = 34, .external_lex_state = 2}, - [1015] = {.lex_state = 34, .external_lex_state = 10}, - [1016] = {.lex_state = 34, .external_lex_state = 10}, - [1017] = {.lex_state = 38, .external_lex_state = 9}, - [1018] = {.lex_state = 34, .external_lex_state = 10}, - [1019] = {.lex_state = 34, .external_lex_state = 10}, - [1020] = {.lex_state = 38, .external_lex_state = 9}, - [1021] = {.lex_state = 34, .external_lex_state = 7}, - [1022] = {.lex_state = 34, .external_lex_state = 10}, - [1023] = {.lex_state = 34, .external_lex_state = 10}, - [1024] = {.lex_state = 34, .external_lex_state = 7}, - [1025] = {.lex_state = 34, .external_lex_state = 10}, - [1026] = {.lex_state = 34, .external_lex_state = 11}, - [1027] = {.lex_state = 34, .external_lex_state = 10}, - [1028] = {.lex_state = 38, .external_lex_state = 9}, - [1029] = {.lex_state = 34, .external_lex_state = 10}, - [1030] = {.lex_state = 34, .external_lex_state = 9}, - [1031] = {.lex_state = 34, .external_lex_state = 10}, - [1032] = {.lex_state = 34, .external_lex_state = 2}, - [1033] = {.lex_state = 34, .external_lex_state = 10}, - [1034] = {.lex_state = 34, .external_lex_state = 10}, - [1035] = {.lex_state = 34, .external_lex_state = 2}, - [1036] = {.lex_state = 34, .external_lex_state = 10}, - [1037] = {.lex_state = 34, .external_lex_state = 7}, - [1038] = {.lex_state = 34, .external_lex_state = 10}, - [1039] = {.lex_state = 34, .external_lex_state = 10}, - [1040] = {.lex_state = 34, .external_lex_state = 8}, - [1041] = {.lex_state = 34, .external_lex_state = 10}, - [1042] = {.lex_state = 34, .external_lex_state = 10}, - [1043] = {.lex_state = 34, .external_lex_state = 7}, - [1044] = {.lex_state = 34, .external_lex_state = 7}, - [1045] = {.lex_state = 34, .external_lex_state = 12}, - [1046] = {.lex_state = 34, .external_lex_state = 10}, - [1047] = {.lex_state = 34, .external_lex_state = 8}, - [1048] = {.lex_state = 34, .external_lex_state = 13}, - [1049] = {.lex_state = 34, .external_lex_state = 10}, - [1050] = {.lex_state = 34, .external_lex_state = 10}, - [1051] = {.lex_state = 34, .external_lex_state = 4}, - [1052] = {.lex_state = 34, .external_lex_state = 8}, - [1053] = {.lex_state = 38, .external_lex_state = 10}, - [1054] = {.lex_state = 34, .external_lex_state = 11}, - [1055] = {.lex_state = 34, .external_lex_state = 9}, - [1056] = {.lex_state = 34, .external_lex_state = 9}, - [1057] = {.lex_state = 34, .external_lex_state = 8}, - [1058] = {.lex_state = 34, .external_lex_state = 12}, - [1059] = {.lex_state = 34, .external_lex_state = 11}, - [1060] = {.lex_state = 34, .external_lex_state = 11}, + [967] = {.lex_state = 37, .external_lex_state = 4}, + [968] = {.lex_state = 37, .external_lex_state = 4}, + [969] = {.lex_state = 37, .external_lex_state = 9}, + [970] = {.lex_state = 37, .external_lex_state = 4}, + [971] = {.lex_state = 37, .external_lex_state = 9}, + [972] = {.lex_state = 37, .external_lex_state = 10}, + [973] = {.lex_state = 37, .external_lex_state = 9}, + [974] = {.lex_state = 37, .external_lex_state = 9}, + [975] = {.lex_state = 37, .external_lex_state = 9}, + [976] = {.lex_state = 37, .external_lex_state = 9}, + [977] = {.lex_state = 37, .external_lex_state = 6}, + [978] = {.lex_state = 37, .external_lex_state = 6}, + [979] = {.lex_state = 37, .external_lex_state = 10}, + [980] = {.lex_state = 37, .external_lex_state = 9}, + [981] = {.lex_state = 37, .external_lex_state = 6}, + [982] = {.lex_state = 37, .external_lex_state = 9}, + [983] = {.lex_state = 37, .external_lex_state = 9}, + [984] = {.lex_state = 37, .external_lex_state = 9}, + [985] = {.lex_state = 37, .external_lex_state = 9}, + [986] = {.lex_state = 37, .external_lex_state = 9}, + [987] = {.lex_state = 37, .external_lex_state = 6}, + [988] = {.lex_state = 37, .external_lex_state = 9}, + [989] = {.lex_state = 37, .external_lex_state = 6}, + [990] = {.lex_state = 37, .external_lex_state = 6}, + [991] = {.lex_state = 37, .external_lex_state = 8}, + [992] = {.lex_state = 37, .external_lex_state = 8}, + [993] = {.lex_state = 37, .external_lex_state = 2}, + [994] = {.lex_state = 37, .external_lex_state = 7}, + [995] = {.lex_state = 37, .external_lex_state = 2}, + [996] = {.lex_state = 37, .external_lex_state = 10}, + [997] = {.lex_state = 37, .external_lex_state = 7}, + [998] = {.lex_state = 37, .external_lex_state = 9}, + [999] = {.lex_state = 37, .external_lex_state = 4}, + [1000] = {.lex_state = 38, .external_lex_state = 9}, + [1001] = {.lex_state = 38, .external_lex_state = 9}, + [1002] = {.lex_state = 37, .external_lex_state = 10}, + [1003] = {.lex_state = 37, .external_lex_state = 7}, + [1004] = {.lex_state = 37, .external_lex_state = 10}, + [1005] = {.lex_state = 38, .external_lex_state = 9}, + [1006] = {.lex_state = 37, .external_lex_state = 11}, + [1007] = {.lex_state = 37, .external_lex_state = 2}, + [1008] = {.lex_state = 37, .external_lex_state = 12}, + [1009] = {.lex_state = 37, .external_lex_state = 7}, + [1010] = {.lex_state = 37, .external_lex_state = 13}, + [1011] = {.lex_state = 37, .external_lex_state = 8}, + [1012] = {.lex_state = 37, .external_lex_state = 10}, + [1013] = {.lex_state = 37, .external_lex_state = 10}, + [1014] = {.lex_state = 37, .external_lex_state = 10}, + [1015] = {.lex_state = 37, .external_lex_state = 10}, + [1016] = {.lex_state = 37, .external_lex_state = 10}, + [1017] = {.lex_state = 37, .external_lex_state = 10}, + [1018] = {.lex_state = 37, .external_lex_state = 10}, + [1019] = {.lex_state = 37, .external_lex_state = 10}, + [1020] = {.lex_state = 37, .external_lex_state = 10}, + [1021] = {.lex_state = 37, .external_lex_state = 10}, + [1022] = {.lex_state = 37, .external_lex_state = 10}, + [1023] = {.lex_state = 37, .external_lex_state = 10}, + [1024] = {.lex_state = 37, .external_lex_state = 4}, + [1025] = {.lex_state = 37, .external_lex_state = 10}, + [1026] = {.lex_state = 37, .external_lex_state = 10}, + [1027] = {.lex_state = 37, .external_lex_state = 10}, + [1028] = {.lex_state = 37, .external_lex_state = 10}, + [1029] = {.lex_state = 37, .external_lex_state = 10}, + [1030] = {.lex_state = 37, .external_lex_state = 10}, + [1031] = {.lex_state = 37, .external_lex_state = 11}, + [1032] = {.lex_state = 37, .external_lex_state = 10}, + [1033] = {.lex_state = 37, .external_lex_state = 10}, + [1034] = {.lex_state = 37, .external_lex_state = 7}, + [1035] = {.lex_state = 37, .external_lex_state = 10}, + [1036] = {.lex_state = 37, .external_lex_state = 10}, + [1037] = {.lex_state = 37, .external_lex_state = 10}, + [1038] = {.lex_state = 37, .external_lex_state = 10}, + [1039] = {.lex_state = 37, .external_lex_state = 7}, + [1040] = {.lex_state = 37, .external_lex_state = 10}, + [1041] = {.lex_state = 37, .external_lex_state = 10}, + [1042] = {.lex_state = 37, .external_lex_state = 10}, + [1043] = {.lex_state = 37, .external_lex_state = 10}, + [1044] = {.lex_state = 38, .external_lex_state = 10}, + [1045] = {.lex_state = 37, .external_lex_state = 9}, + [1046] = {.lex_state = 37, .external_lex_state = 9}, + [1047] = {.lex_state = 37, .external_lex_state = 9}, + [1048] = {.lex_state = 37, .external_lex_state = 12}, + [1049] = {.lex_state = 37, .external_lex_state = 12}, + [1050] = {.lex_state = 37, .external_lex_state = 9}, + [1051] = {.lex_state = 37, .external_lex_state = 12}, + [1052] = {.lex_state = 37, .external_lex_state = 12}, + [1053] = {.lex_state = 37, .external_lex_state = 12}, + [1054] = {.lex_state = 37, .external_lex_state = 9}, + [1055] = {.lex_state = 37, .external_lex_state = 12}, + [1056] = {.lex_state = 37, .external_lex_state = 11}, + [1057] = {.lex_state = 37, .external_lex_state = 11}, + [1058] = {.lex_state = 37, .external_lex_state = 9}, + [1059] = {.lex_state = 37, .external_lex_state = 12}, + [1060] = {.lex_state = 38, .external_lex_state = 10}, [1061] = {.lex_state = 38, .external_lex_state = 10}, - [1062] = {.lex_state = 34, .external_lex_state = 12}, - [1063] = {.lex_state = 38, .external_lex_state = 11}, - [1064] = {.lex_state = 34, .external_lex_state = 12}, - [1065] = {.lex_state = 38, .external_lex_state = 10}, - [1066] = {.lex_state = 34, .external_lex_state = 9}, - [1067] = {.lex_state = 34, .external_lex_state = 9}, - [1068] = {.lex_state = 34, .external_lex_state = 9}, - [1069] = {.lex_state = 34, .external_lex_state = 9}, - [1070] = {.lex_state = 38, .external_lex_state = 10}, - [1071] = {.lex_state = 34, .external_lex_state = 11}, - [1072] = {.lex_state = 34, .external_lex_state = 11}, - [1073] = {.lex_state = 34, .external_lex_state = 11}, - [1074] = {.lex_state = 34, .external_lex_state = 9}, - [1075] = {.lex_state = 34, .external_lex_state = 11}, - [1076] = {.lex_state = 34, .external_lex_state = 9}, - [1077] = {.lex_state = 34, .external_lex_state = 11}, - [1078] = {.lex_state = 34, .external_lex_state = 9}, - [1079] = {.lex_state = 34, .external_lex_state = 9}, - [1080] = {.lex_state = 34, .external_lex_state = 9}, - [1081] = {.lex_state = 34, .external_lex_state = 9}, - [1082] = {.lex_state = 34, .external_lex_state = 9}, - [1083] = {.lex_state = 34, .external_lex_state = 11}, - [1084] = {.lex_state = 34, .external_lex_state = 11}, - [1085] = {.lex_state = 34, .external_lex_state = 9}, - [1086] = {.lex_state = 34, .external_lex_state = 9}, - [1087] = {.lex_state = 34, .external_lex_state = 9}, - [1088] = {.lex_state = 34, .external_lex_state = 9}, - [1089] = {.lex_state = 38, .external_lex_state = 11}, - [1090] = {.lex_state = 38, .external_lex_state = 11}, - [1091] = {.lex_state = 38, .external_lex_state = 11}, - [1092] = {.lex_state = 34, .external_lex_state = 11}, - [1093] = {.lex_state = 34, .external_lex_state = 11}, - [1094] = {.lex_state = 34, .external_lex_state = 11}, - [1095] = {.lex_state = 34, .external_lex_state = 8}, - [1096] = {.lex_state = 34, .external_lex_state = 9}, - [1097] = {.lex_state = 34, .external_lex_state = 9}, - [1098] = {.lex_state = 34, .external_lex_state = 9}, - [1099] = {.lex_state = 34, .external_lex_state = 9}, - [1100] = {.lex_state = 34, .external_lex_state = 9}, - [1101] = {.lex_state = 34, .external_lex_state = 11}, - [1102] = {.lex_state = 34, .external_lex_state = 9}, - [1103] = {.lex_state = 34, .external_lex_state = 9}, - [1104] = {.lex_state = 34, .external_lex_state = 11}, - [1105] = {.lex_state = 34, .external_lex_state = 9}, - [1106] = {.lex_state = 34, .external_lex_state = 9}, + [1062] = {.lex_state = 38, .external_lex_state = 10}, + [1063] = {.lex_state = 37, .external_lex_state = 9}, + [1064] = {.lex_state = 37, .external_lex_state = 9}, + [1065] = {.lex_state = 37, .external_lex_state = 6}, + [1066] = {.lex_state = 37, .external_lex_state = 12}, + [1067] = {.lex_state = 37, .external_lex_state = 9}, + [1068] = {.lex_state = 37, .external_lex_state = 11}, + [1069] = {.lex_state = 37, .external_lex_state = 11}, + [1070] = {.lex_state = 37, .external_lex_state = 11}, + [1071] = {.lex_state = 37, .external_lex_state = 11}, + [1072] = {.lex_state = 37, .external_lex_state = 11}, + [1073] = {.lex_state = 37, .external_lex_state = 11}, + [1074] = {.lex_state = 37, .external_lex_state = 11}, + [1075] = {.lex_state = 37, .external_lex_state = 11}, + [1076] = {.lex_state = 37, .external_lex_state = 6}, + [1077] = {.lex_state = 37, .external_lex_state = 9}, + [1078] = {.lex_state = 37, .external_lex_state = 12}, + [1079] = {.lex_state = 37, .external_lex_state = 11}, + [1080] = {.lex_state = 37, .external_lex_state = 13}, + [1081] = {.lex_state = 37, .external_lex_state = 11}, + [1082] = {.lex_state = 37, .external_lex_state = 12}, + [1083] = {.lex_state = 37, .external_lex_state = 13}, + [1084] = {.lex_state = 37, .external_lex_state = 9}, + [1085] = {.lex_state = 37, .external_lex_state = 13}, + [1086] = {.lex_state = 37, .external_lex_state = 12}, + [1087] = {.lex_state = 37, .external_lex_state = 12}, + [1088] = {.lex_state = 37, .external_lex_state = 11}, + [1089] = {.lex_state = 37, .external_lex_state = 9}, + [1090] = {.lex_state = 37, .external_lex_state = 9}, + [1091] = {.lex_state = 38, .external_lex_state = 10}, + [1092] = {.lex_state = 38, .external_lex_state = 11}, + [1093] = {.lex_state = 38, .external_lex_state = 10}, + [1094] = {.lex_state = 38, .external_lex_state = 11}, + [1095] = {.lex_state = 38, .external_lex_state = 10}, + [1096] = {.lex_state = 37, .external_lex_state = 11}, + [1097] = {.lex_state = 38, .external_lex_state = 11}, + [1098] = {.lex_state = 38, .external_lex_state = 10}, + [1099] = {.lex_state = 37, .external_lex_state = 9}, + [1100] = {.lex_state = 37, .external_lex_state = 9}, + [1101] = {.lex_state = 37, .external_lex_state = 9}, + [1102] = {.lex_state = 37, .external_lex_state = 9}, + [1103] = {.lex_state = 37, .external_lex_state = 11}, + [1104] = {.lex_state = 37, .external_lex_state = 13}, + [1105] = {.lex_state = 37, .external_lex_state = 13}, + [1106] = {.lex_state = 38, .external_lex_state = 10}, [1107] = {.lex_state = 38, .external_lex_state = 10}, - [1108] = {.lex_state = 38, .external_lex_state = 10}, - [1109] = {.lex_state = 34, .external_lex_state = 9}, - [1110] = {.lex_state = 34, .external_lex_state = 9}, - [1111] = {.lex_state = 34, .external_lex_state = 9}, - [1112] = {.lex_state = 34, .external_lex_state = 11}, - [1113] = {.lex_state = 34, .external_lex_state = 9}, - [1114] = {.lex_state = 34, .external_lex_state = 11}, - [1115] = {.lex_state = 38, .external_lex_state = 10}, - [1116] = {.lex_state = 38, .external_lex_state = 10}, - [1117] = {.lex_state = 38, .external_lex_state = 10}, - [1118] = {.lex_state = 34, .external_lex_state = 9}, - [1119] = {.lex_state = 34, .external_lex_state = 13}, - [1120] = {.lex_state = 34, .external_lex_state = 13}, - [1121] = {.lex_state = 34, .external_lex_state = 9}, - [1122] = {.lex_state = 34, .external_lex_state = 9}, - [1123] = {.lex_state = 34, .external_lex_state = 6}, - [1124] = {.lex_state = 34, .external_lex_state = 11}, - [1125] = {.lex_state = 34, .external_lex_state = 11}, - [1126] = {.lex_state = 34, .external_lex_state = 9}, - [1127] = {.lex_state = 34, .external_lex_state = 9}, - [1128] = {.lex_state = 34, .external_lex_state = 12}, - [1129] = {.lex_state = 34, .external_lex_state = 12}, - [1130] = {.lex_state = 34, .external_lex_state = 13}, - [1131] = {.lex_state = 34, .external_lex_state = 12}, - [1132] = {.lex_state = 34, .external_lex_state = 12}, - [1133] = {.lex_state = 34, .external_lex_state = 11}, - [1134] = {.lex_state = 34, .external_lex_state = 12}, - [1135] = {.lex_state = 34, .external_lex_state = 13}, - [1136] = {.lex_state = 34, .external_lex_state = 11}, - [1137] = {.lex_state = 34, .external_lex_state = 11}, - [1138] = {.lex_state = 34, .external_lex_state = 6}, - [1139] = {.lex_state = 34, .external_lex_state = 12}, - [1140] = {.lex_state = 38, .external_lex_state = 9}, - [1141] = {.lex_state = 34, .external_lex_state = 12}, - [1142] = {.lex_state = 34, .external_lex_state = 8}, - [1143] = {.lex_state = 34, .external_lex_state = 12}, - [1144] = {.lex_state = 34, .external_lex_state = 11}, - [1145] = {.lex_state = 34, .external_lex_state = 13}, - [1146] = {.lex_state = 34, .external_lex_state = 13}, - [1147] = {.lex_state = 34, .external_lex_state = 13}, - [1148] = {.lex_state = 34, .external_lex_state = 13}, - [1149] = {.lex_state = 34, .external_lex_state = 12}, - [1150] = {.lex_state = 34, .external_lex_state = 11}, - [1151] = {.lex_state = 34, .external_lex_state = 13}, - [1152] = {.lex_state = 34, .external_lex_state = 13}, - [1153] = {.lex_state = 34, .external_lex_state = 13}, - [1154] = {.lex_state = 34, .external_lex_state = 13}, - [1155] = {.lex_state = 34, .external_lex_state = 12}, - [1156] = {.lex_state = 34, .external_lex_state = 9}, - [1157] = {.lex_state = 38, .external_lex_state = 10}, - [1158] = {.lex_state = 38, .external_lex_state = 10}, - [1159] = {.lex_state = 38, .external_lex_state = 10}, - [1160] = {.lex_state = 34, .external_lex_state = 6}, - [1161] = {.lex_state = 34, .external_lex_state = 6}, - [1162] = {.lex_state = 34, .external_lex_state = 10}, - [1163] = {.lex_state = 34, .external_lex_state = 10}, - [1164] = {.lex_state = 34, .external_lex_state = 10}, - [1165] = {.lex_state = 34, .external_lex_state = 10}, - [1166] = {.lex_state = 34, .external_lex_state = 10}, - [1167] = {.lex_state = 34, .external_lex_state = 10}, - [1168] = {.lex_state = 34, .external_lex_state = 10}, - [1169] = {.lex_state = 34, .external_lex_state = 10}, - [1170] = {.lex_state = 38, .external_lex_state = 11}, - [1171] = {.lex_state = 34, .external_lex_state = 10}, - [1172] = {.lex_state = 34, .external_lex_state = 10}, - [1173] = {.lex_state = 34, .external_lex_state = 10}, - [1174] = {.lex_state = 34, .external_lex_state = 10}, - [1175] = {.lex_state = 34, .external_lex_state = 10}, - [1176] = {.lex_state = 34, .external_lex_state = 10}, - [1177] = {.lex_state = 34, .external_lex_state = 7}, - [1178] = {.lex_state = 38, .external_lex_state = 11}, - [1179] = {.lex_state = 38, .external_lex_state = 11}, + [1108] = {.lex_state = 37, .external_lex_state = 11}, + [1109] = {.lex_state = 37, .external_lex_state = 13}, + [1110] = {.lex_state = 37, .external_lex_state = 13}, + [1111] = {.lex_state = 37, .external_lex_state = 9}, + [1112] = {.lex_state = 37, .external_lex_state = 13}, + [1113] = {.lex_state = 38, .external_lex_state = 9}, + [1114] = {.lex_state = 37, .external_lex_state = 6}, + [1115] = {.lex_state = 37, .external_lex_state = 13}, + [1116] = {.lex_state = 37, .external_lex_state = 13}, + [1117] = {.lex_state = 37, .external_lex_state = 13}, + [1118] = {.lex_state = 37, .external_lex_state = 11}, + [1119] = {.lex_state = 38, .external_lex_state = 10}, + [1120] = {.lex_state = 37, .external_lex_state = 11}, + [1121] = {.lex_state = 37, .external_lex_state = 9}, + [1122] = {.lex_state = 37, .external_lex_state = 9}, + [1123] = {.lex_state = 37, .external_lex_state = 9}, + [1124] = {.lex_state = 37, .external_lex_state = 11}, + [1125] = {.lex_state = 37, .external_lex_state = 9}, + [1126] = {.lex_state = 37, .external_lex_state = 9}, + [1127] = {.lex_state = 38, .external_lex_state = 10}, + [1128] = {.lex_state = 37, .external_lex_state = 9}, + [1129] = {.lex_state = 37, .external_lex_state = 6}, + [1130] = {.lex_state = 37, .external_lex_state = 11}, + [1131] = {.lex_state = 37, .external_lex_state = 11}, + [1132] = {.lex_state = 37, .external_lex_state = 11}, + [1133] = {.lex_state = 37, .external_lex_state = 9}, + [1134] = {.lex_state = 37, .external_lex_state = 9}, + [1135] = {.lex_state = 37, .external_lex_state = 9}, + [1136] = {.lex_state = 37, .external_lex_state = 9}, + [1137] = {.lex_state = 37, .external_lex_state = 9}, + [1138] = {.lex_state = 37, .external_lex_state = 9}, + [1139] = {.lex_state = 37, .external_lex_state = 9}, + [1140] = {.lex_state = 37, .external_lex_state = 9}, + [1141] = {.lex_state = 37, .external_lex_state = 11}, + [1142] = {.lex_state = 37, .external_lex_state = 11}, + [1143] = {.lex_state = 37, .external_lex_state = 9}, + [1144] = {.lex_state = 38, .external_lex_state = 11}, + [1145] = {.lex_state = 37, .external_lex_state = 13}, + [1146] = {.lex_state = 37, .external_lex_state = 13}, + [1147] = {.lex_state = 37, .external_lex_state = 9}, + [1148] = {.lex_state = 37, .external_lex_state = 9}, + [1149] = {.lex_state = 37, .external_lex_state = 8}, + [1150] = {.lex_state = 37, .external_lex_state = 8}, + [1151] = {.lex_state = 37, .external_lex_state = 9}, + [1152] = {.lex_state = 37, .external_lex_state = 8}, + [1153] = {.lex_state = 37, .external_lex_state = 13}, + [1154] = {.lex_state = 37, .external_lex_state = 11}, + [1155] = {.lex_state = 37, .external_lex_state = 10}, + [1156] = {.lex_state = 37, .external_lex_state = 10}, + [1157] = {.lex_state = 37, .external_lex_state = 10}, + [1158] = {.lex_state = 37, .external_lex_state = 7}, + [1159] = {.lex_state = 37, .external_lex_state = 10}, + [1160] = {.lex_state = 37, .external_lex_state = 10}, + [1161] = {.lex_state = 37, .external_lex_state = 10}, + [1162] = {.lex_state = 37, .external_lex_state = 10}, + [1163] = {.lex_state = 37, .external_lex_state = 10}, + [1164] = {.lex_state = 37, .external_lex_state = 10}, + [1165] = {.lex_state = 37, .external_lex_state = 10}, + [1166] = {.lex_state = 37, .external_lex_state = 10}, + [1167] = {.lex_state = 38, .external_lex_state = 11}, + [1168] = {.lex_state = 37, .external_lex_state = 10}, + [1169] = {.lex_state = 37, .external_lex_state = 10}, + [1170] = {.lex_state = 37, .external_lex_state = 10}, + [1171] = {.lex_state = 37, .external_lex_state = 10}, + [1172] = {.lex_state = 37, .external_lex_state = 11}, + [1173] = {.lex_state = 37, .external_lex_state = 10}, + [1174] = {.lex_state = 38, .external_lex_state = 11}, + [1175] = {.lex_state = 38, .external_lex_state = 11}, + [1176] = {.lex_state = 38, .external_lex_state = 11}, + [1177] = {.lex_state = 38, .external_lex_state = 11}, + [1178] = {.lex_state = 37, .external_lex_state = 10}, + [1179] = {.lex_state = 37, .external_lex_state = 10}, [1180] = {.lex_state = 38, .external_lex_state = 11}, - [1181] = {.lex_state = 34, .external_lex_state = 10}, - [1182] = {.lex_state = 34, .external_lex_state = 10}, - [1183] = {.lex_state = 34, .external_lex_state = 10}, - [1184] = {.lex_state = 34, .external_lex_state = 10}, - [1185] = {.lex_state = 34, .external_lex_state = 8}, - [1186] = {.lex_state = 34, .external_lex_state = 10}, - [1187] = {.lex_state = 34, .external_lex_state = 11}, - [1188] = {.lex_state = 34, .external_lex_state = 10}, - [1189] = {.lex_state = 34, .external_lex_state = 12}, - [1190] = {.lex_state = 34, .external_lex_state = 12}, - [1191] = {.lex_state = 34, .external_lex_state = 10}, - [1192] = {.lex_state = 38, .external_lex_state = 12}, - [1193] = {.lex_state = 34, .external_lex_state = 10}, - [1194] = {.lex_state = 34, .external_lex_state = 10}, - [1195] = {.lex_state = 34, .external_lex_state = 10}, - [1196] = {.lex_state = 34, .external_lex_state = 10}, - [1197] = {.lex_state = 34, .external_lex_state = 2}, - [1198] = {.lex_state = 34, .external_lex_state = 10}, - [1199] = {.lex_state = 34, .external_lex_state = 10}, - [1200] = {.lex_state = 34, .external_lex_state = 10}, - [1201] = {.lex_state = 34, .external_lex_state = 10}, - [1202] = {.lex_state = 34, .external_lex_state = 10}, - [1203] = {.lex_state = 34, .external_lex_state = 10}, - [1204] = {.lex_state = 34, .external_lex_state = 10}, - [1205] = {.lex_state = 34, .external_lex_state = 10}, - [1206] = {.lex_state = 38, .external_lex_state = 12}, - [1207] = {.lex_state = 34, .external_lex_state = 8}, - [1208] = {.lex_state = 34, .external_lex_state = 10}, - [1209] = {.lex_state = 34, .external_lex_state = 10}, - [1210] = {.lex_state = 34, .external_lex_state = 12}, - [1211] = {.lex_state = 34, .external_lex_state = 12}, - [1212] = {.lex_state = 34, .external_lex_state = 12}, - [1213] = {.lex_state = 34, .external_lex_state = 12}, - [1214] = {.lex_state = 34, .external_lex_state = 12}, - [1215] = {.lex_state = 34, .external_lex_state = 12}, - [1216] = {.lex_state = 34, .external_lex_state = 12}, - [1217] = {.lex_state = 34, .external_lex_state = 10}, - [1218] = {.lex_state = 34, .external_lex_state = 12}, - [1219] = {.lex_state = 34, .external_lex_state = 10}, - [1220] = {.lex_state = 34, .external_lex_state = 10}, - [1221] = {.lex_state = 34, .external_lex_state = 10}, - [1222] = {.lex_state = 34, .external_lex_state = 10}, - [1223] = {.lex_state = 34, .external_lex_state = 10}, - [1224] = {.lex_state = 34, .external_lex_state = 10}, - [1225] = {.lex_state = 34, .external_lex_state = 10}, - [1226] = {.lex_state = 34, .external_lex_state = 10}, - [1227] = {.lex_state = 38, .external_lex_state = 11}, - [1228] = {.lex_state = 38, .external_lex_state = 12}, - [1229] = {.lex_state = 34, .external_lex_state = 10}, - [1230] = {.lex_state = 38, .external_lex_state = 12}, - [1231] = {.lex_state = 34, .external_lex_state = 10}, - [1232] = {.lex_state = 38, .external_lex_state = 12}, - [1233] = {.lex_state = 38, .external_lex_state = 12}, - [1234] = {.lex_state = 38, .external_lex_state = 13}, - [1235] = {.lex_state = 38, .external_lex_state = 13}, - [1236] = {.lex_state = 34, .external_lex_state = 10}, - [1237] = {.lex_state = 34, .external_lex_state = 10}, - [1238] = {.lex_state = 38, .external_lex_state = 13}, - [1239] = {.lex_state = 34, .external_lex_state = 10}, - [1240] = {.lex_state = 34, .external_lex_state = 10}, - [1241] = {.lex_state = 38, .external_lex_state = 12}, - [1242] = {.lex_state = 38, .external_lex_state = 11}, - [1243] = {.lex_state = 34, .external_lex_state = 2}, - [1244] = {.lex_state = 38, .external_lex_state = 12}, - [1245] = {.lex_state = 34, .external_lex_state = 10}, - [1246] = {.lex_state = 34, .external_lex_state = 10}, - [1247] = {.lex_state = 34, .external_lex_state = 7}, - [1248] = {.lex_state = 38, .external_lex_state = 12}, - [1249] = {.lex_state = 34, .external_lex_state = 10}, - [1250] = {.lex_state = 34, .external_lex_state = 11}, - [1251] = {.lex_state = 34, .external_lex_state = 10}, - [1252] = {.lex_state = 34, .external_lex_state = 10}, - [1253] = {.lex_state = 34, .external_lex_state = 10}, - [1254] = {.lex_state = 34, .external_lex_state = 7}, - [1255] = {.lex_state = 34, .external_lex_state = 10}, - [1256] = {.lex_state = 34, .external_lex_state = 10}, - [1257] = {.lex_state = 34, .external_lex_state = 11}, - [1258] = {.lex_state = 34, .external_lex_state = 11}, - [1259] = {.lex_state = 34, .external_lex_state = 12}, - [1260] = {.lex_state = 34, .external_lex_state = 11}, - [1261] = {.lex_state = 34, .external_lex_state = 12}, - [1262] = {.lex_state = 38, .external_lex_state = 11}, - [1263] = {.lex_state = 38, .external_lex_state = 11}, - [1264] = {.lex_state = 38, .external_lex_state = 12}, - [1265] = {.lex_state = 38, .external_lex_state = 11}, - [1266] = {.lex_state = 34, .external_lex_state = 10}, - [1267] = {.lex_state = 38, .external_lex_state = 13}, - [1268] = {.lex_state = 34, .external_lex_state = 10}, - [1269] = {.lex_state = 34, .external_lex_state = 10}, - [1270] = {.lex_state = 34, .external_lex_state = 10}, - [1271] = {.lex_state = 34, .external_lex_state = 10}, - [1272] = {.lex_state = 34, .external_lex_state = 10}, - [1273] = {.lex_state = 34, .external_lex_state = 10}, - [1274] = {.lex_state = 34, .external_lex_state = 11}, - [1275] = {.lex_state = 34, .external_lex_state = 11}, - [1276] = {.lex_state = 34, .external_lex_state = 11}, - [1277] = {.lex_state = 34, .external_lex_state = 10}, - [1278] = {.lex_state = 34, .external_lex_state = 10}, - [1279] = {.lex_state = 34, .external_lex_state = 10}, - [1280] = {.lex_state = 34, .external_lex_state = 10}, - [1281] = {.lex_state = 34, .external_lex_state = 7}, - [1282] = {.lex_state = 34, .external_lex_state = 10}, - [1283] = {.lex_state = 38, .external_lex_state = 11}, - [1284] = {.lex_state = 34, .external_lex_state = 12}, - [1285] = {.lex_state = 34, .external_lex_state = 10}, - [1286] = {.lex_state = 38, .external_lex_state = 11}, - [1287] = {.lex_state = 38, .external_lex_state = 11}, - [1288] = {.lex_state = 34, .external_lex_state = 8}, - [1289] = {.lex_state = 34, .external_lex_state = 13}, - [1290] = {.lex_state = 38, .external_lex_state = 11}, - [1291] = {.lex_state = 34, .external_lex_state = 12}, - [1292] = {.lex_state = 38, .external_lex_state = 11}, - [1293] = {.lex_state = 38, .external_lex_state = 11}, - [1294] = {.lex_state = 34, .external_lex_state = 12}, - [1295] = {.lex_state = 34, .external_lex_state = 11}, - [1296] = {.lex_state = 34, .external_lex_state = 12}, - [1297] = {.lex_state = 34, .external_lex_state = 12}, - [1298] = {.lex_state = 34, .external_lex_state = 11}, - [1299] = {.lex_state = 34, .external_lex_state = 11}, - [1300] = {.lex_state = 34, .external_lex_state = 11}, - [1301] = {.lex_state = 34, .external_lex_state = 12}, - [1302] = {.lex_state = 34, .external_lex_state = 11}, - [1303] = {.lex_state = 34, .external_lex_state = 11}, - [1304] = {.lex_state = 34, .external_lex_state = 12}, - [1305] = {.lex_state = 34, .external_lex_state = 12}, - [1306] = {.lex_state = 34, .external_lex_state = 12}, - [1307] = {.lex_state = 34, .external_lex_state = 11}, - [1308] = {.lex_state = 34, .external_lex_state = 11}, - [1309] = {.lex_state = 34, .external_lex_state = 12}, - [1310] = {.lex_state = 34, .external_lex_state = 11}, - [1311] = {.lex_state = 34, .external_lex_state = 11}, - [1312] = {.lex_state = 34, .external_lex_state = 11}, - [1313] = {.lex_state = 34, .external_lex_state = 11}, - [1314] = {.lex_state = 34, .external_lex_state = 11}, - [1315] = {.lex_state = 34, .external_lex_state = 11}, - [1316] = {.lex_state = 34, .external_lex_state = 11}, - [1317] = {.lex_state = 34, .external_lex_state = 11}, - [1318] = {.lex_state = 34, .external_lex_state = 11}, - [1319] = {.lex_state = 34, .external_lex_state = 11}, - [1320] = {.lex_state = 34, .external_lex_state = 11}, - [1321] = {.lex_state = 34, .external_lex_state = 13}, - [1322] = {.lex_state = 34, .external_lex_state = 12}, - [1323] = {.lex_state = 34, .external_lex_state = 12}, - [1324] = {.lex_state = 34, .external_lex_state = 13}, - [1325] = {.lex_state = 34, .external_lex_state = 13}, - [1326] = {.lex_state = 34, .external_lex_state = 12}, - [1327] = {.lex_state = 34, .external_lex_state = 12}, - [1328] = {.lex_state = 34, .external_lex_state = 12}, - [1329] = {.lex_state = 34, .external_lex_state = 13}, - [1330] = {.lex_state = 34, .external_lex_state = 12}, - [1331] = {.lex_state = 34, .external_lex_state = 12}, - [1332] = {.lex_state = 34, .external_lex_state = 11}, - [1333] = {.lex_state = 34, .external_lex_state = 11}, - [1334] = {.lex_state = 34, .external_lex_state = 11}, - [1335] = {.lex_state = 34, .external_lex_state = 13}, - [1336] = {.lex_state = 34, .external_lex_state = 11}, - [1337] = {.lex_state = 34, .external_lex_state = 13}, - [1338] = {.lex_state = 34, .external_lex_state = 11}, - [1339] = {.lex_state = 34, .external_lex_state = 9}, - [1340] = {.lex_state = 34, .external_lex_state = 11}, - [1341] = {.lex_state = 34, .external_lex_state = 11}, - [1342] = {.lex_state = 34, .external_lex_state = 12}, - [1343] = {.lex_state = 34, .external_lex_state = 11}, - [1344] = {.lex_state = 34, .external_lex_state = 13}, - [1345] = {.lex_state = 34, .external_lex_state = 11}, - [1346] = {.lex_state = 34, .external_lex_state = 12}, - [1347] = {.lex_state = 34, .external_lex_state = 12}, - [1348] = {.lex_state = 34, .external_lex_state = 11}, - [1349] = {.lex_state = 34, .external_lex_state = 11}, - [1350] = {.lex_state = 34, .external_lex_state = 13}, - [1351] = {.lex_state = 34, .external_lex_state = 11}, - [1352] = {.lex_state = 34, .external_lex_state = 11}, - [1353] = {.lex_state = 34, .external_lex_state = 11}, - [1354] = {.lex_state = 34, .external_lex_state = 13}, - [1355] = {.lex_state = 34, .external_lex_state = 11}, - [1356] = {.lex_state = 34, .external_lex_state = 13}, - [1357] = {.lex_state = 34, .external_lex_state = 13}, - [1358] = {.lex_state = 34, .external_lex_state = 13}, - [1359] = {.lex_state = 34, .external_lex_state = 12}, - [1360] = {.lex_state = 34, .external_lex_state = 13}, - [1361] = {.lex_state = 34, .external_lex_state = 13}, - [1362] = {.lex_state = 34, .external_lex_state = 12}, - [1363] = {.lex_state = 34, .external_lex_state = 13}, - [1364] = {.lex_state = 34, .external_lex_state = 13}, - [1365] = {.lex_state = 34, .external_lex_state = 13}, - [1366] = {.lex_state = 34, .external_lex_state = 11}, - [1367] = {.lex_state = 34, .external_lex_state = 11}, - [1368] = {.lex_state = 34, .external_lex_state = 13}, - [1369] = {.lex_state = 34, .external_lex_state = 11}, - [1370] = {.lex_state = 34, .external_lex_state = 11}, - [1371] = {.lex_state = 34, .external_lex_state = 11}, - [1372] = {.lex_state = 34, .external_lex_state = 12}, - [1373] = {.lex_state = 34, .external_lex_state = 11}, - [1374] = {.lex_state = 34, .external_lex_state = 11}, - [1375] = {.lex_state = 34, .external_lex_state = 11}, - [1376] = {.lex_state = 38, .external_lex_state = 12}, - [1377] = {.lex_state = 38, .external_lex_state = 12}, - [1378] = {.lex_state = 34, .external_lex_state = 12}, - [1379] = {.lex_state = 38, .external_lex_state = 12}, - [1380] = {.lex_state = 34, .external_lex_state = 12}, - [1381] = {.lex_state = 34, .external_lex_state = 12}, - [1382] = {.lex_state = 34, .external_lex_state = 12}, - [1383] = {.lex_state = 34, .external_lex_state = 13}, - [1384] = {.lex_state = 34, .external_lex_state = 11}, - [1385] = {.lex_state = 34, .external_lex_state = 12}, - [1386] = {.lex_state = 34, .external_lex_state = 12}, - [1387] = {.lex_state = 34, .external_lex_state = 13}, - [1388] = {.lex_state = 34, .external_lex_state = 11}, - [1389] = {.lex_state = 34, .external_lex_state = 11}, - [1390] = {.lex_state = 34, .external_lex_state = 11}, - [1391] = {.lex_state = 34, .external_lex_state = 11}, - [1392] = {.lex_state = 34, .external_lex_state = 11}, - [1393] = {.lex_state = 34, .external_lex_state = 12}, - [1394] = {.lex_state = 34, .external_lex_state = 11}, - [1395] = {.lex_state = 34, .external_lex_state = 12}, - [1396] = {.lex_state = 34, .external_lex_state = 12}, - [1397] = {.lex_state = 34, .external_lex_state = 13}, - [1398] = {.lex_state = 34, .external_lex_state = 13}, - [1399] = {.lex_state = 34, .external_lex_state = 13}, - [1400] = {.lex_state = 34, .external_lex_state = 12}, - [1401] = {.lex_state = 34, .external_lex_state = 12}, - [1402] = {.lex_state = 34, .external_lex_state = 12}, - [1403] = {.lex_state = 34, .external_lex_state = 13}, - [1404] = {.lex_state = 34, .external_lex_state = 13}, - [1405] = {.lex_state = 34, .external_lex_state = 13}, - [1406] = {.lex_state = 34, .external_lex_state = 11}, - [1407] = {.lex_state = 34, .external_lex_state = 12}, - [1408] = {.lex_state = 34, .external_lex_state = 13}, - [1409] = {.lex_state = 34, .external_lex_state = 11}, - [1410] = {.lex_state = 34, .external_lex_state = 13}, - [1411] = {.lex_state = 34, .external_lex_state = 11}, - [1412] = {.lex_state = 33, .external_lex_state = 9}, - [1413] = {.lex_state = 34, .external_lex_state = 11}, - [1414] = {.lex_state = 34, .external_lex_state = 11}, - [1415] = {.lex_state = 34, .external_lex_state = 11}, - [1416] = {.lex_state = 34, .external_lex_state = 13}, - [1417] = {.lex_state = 34, .external_lex_state = 13}, - [1418] = {.lex_state = 34, .external_lex_state = 12}, - [1419] = {.lex_state = 34, .external_lex_state = 11}, - [1420] = {.lex_state = 34, .external_lex_state = 11}, - [1421] = {.lex_state = 34, .external_lex_state = 11}, + [1181] = {.lex_state = 37, .external_lex_state = 7}, + [1182] = {.lex_state = 38, .external_lex_state = 11}, + [1183] = {.lex_state = 37, .external_lex_state = 10}, + [1184] = {.lex_state = 37, .external_lex_state = 10}, + [1185] = {.lex_state = 37, .external_lex_state = 10}, + [1186] = {.lex_state = 37, .external_lex_state = 10}, + [1187] = {.lex_state = 37, .external_lex_state = 10}, + [1188] = {.lex_state = 38, .external_lex_state = 13}, + [1189] = {.lex_state = 38, .external_lex_state = 13}, + [1190] = {.lex_state = 37, .external_lex_state = 11}, + [1191] = {.lex_state = 37, .external_lex_state = 10}, + [1192] = {.lex_state = 37, .external_lex_state = 10}, + [1193] = {.lex_state = 37, .external_lex_state = 13}, + [1194] = {.lex_state = 38, .external_lex_state = 11}, + [1195] = {.lex_state = 37, .external_lex_state = 10}, + [1196] = {.lex_state = 38, .external_lex_state = 13}, + [1197] = {.lex_state = 37, .external_lex_state = 13}, + [1198] = {.lex_state = 37, .external_lex_state = 10}, + [1199] = {.lex_state = 38, .external_lex_state = 12}, + [1200] = {.lex_state = 38, .external_lex_state = 12}, + [1201] = {.lex_state = 38, .external_lex_state = 12}, + [1202] = {.lex_state = 38, .external_lex_state = 12}, + [1203] = {.lex_state = 37, .external_lex_state = 10}, + [1204] = {.lex_state = 37, .external_lex_state = 2}, + [1205] = {.lex_state = 37, .external_lex_state = 11}, + [1206] = {.lex_state = 37, .external_lex_state = 10}, + [1207] = {.lex_state = 37, .external_lex_state = 13}, + [1208] = {.lex_state = 37, .external_lex_state = 10}, + [1209] = {.lex_state = 37, .external_lex_state = 13}, + [1210] = {.lex_state = 37, .external_lex_state = 13}, + [1211] = {.lex_state = 37, .external_lex_state = 13}, + [1212] = {.lex_state = 37, .external_lex_state = 13}, + [1213] = {.lex_state = 37, .external_lex_state = 13}, + [1214] = {.lex_state = 37, .external_lex_state = 10}, + [1215] = {.lex_state = 38, .external_lex_state = 11}, + [1216] = {.lex_state = 38, .external_lex_state = 11}, + [1217] = {.lex_state = 37, .external_lex_state = 11}, + [1218] = {.lex_state = 37, .external_lex_state = 10}, + [1219] = {.lex_state = 37, .external_lex_state = 13}, + [1220] = {.lex_state = 37, .external_lex_state = 10}, + [1221] = {.lex_state = 37, .external_lex_state = 10}, + [1222] = {.lex_state = 38, .external_lex_state = 13}, + [1223] = {.lex_state = 37, .external_lex_state = 7}, + [1224] = {.lex_state = 37, .external_lex_state = 10}, + [1225] = {.lex_state = 37, .external_lex_state = 10}, + [1226] = {.lex_state = 37, .external_lex_state = 13}, + [1227] = {.lex_state = 38, .external_lex_state = 13}, + [1228] = {.lex_state = 38, .external_lex_state = 13}, + [1229] = {.lex_state = 38, .external_lex_state = 13}, + [1230] = {.lex_state = 37, .external_lex_state = 13}, + [1231] = {.lex_state = 38, .external_lex_state = 13}, + [1232] = {.lex_state = 37, .external_lex_state = 10}, + [1233] = {.lex_state = 38, .external_lex_state = 11}, + [1234] = {.lex_state = 38, .external_lex_state = 11}, + [1235] = {.lex_state = 37, .external_lex_state = 10}, + [1236] = {.lex_state = 37, .external_lex_state = 10}, + [1237] = {.lex_state = 37, .external_lex_state = 10}, + [1238] = {.lex_state = 37, .external_lex_state = 8}, + [1239] = {.lex_state = 37, .external_lex_state = 7}, + [1240] = {.lex_state = 37, .external_lex_state = 10}, + [1241] = {.lex_state = 37, .external_lex_state = 10}, + [1242] = {.lex_state = 37, .external_lex_state = 10}, + [1243] = {.lex_state = 37, .external_lex_state = 10}, + [1244] = {.lex_state = 37, .external_lex_state = 11}, + [1245] = {.lex_state = 37, .external_lex_state = 11}, + [1246] = {.lex_state = 37, .external_lex_state = 11}, + [1247] = {.lex_state = 38, .external_lex_state = 13}, + [1248] = {.lex_state = 37, .external_lex_state = 10}, + [1249] = {.lex_state = 38, .external_lex_state = 13}, + [1250] = {.lex_state = 37, .external_lex_state = 8}, + [1251] = {.lex_state = 37, .external_lex_state = 10}, + [1252] = {.lex_state = 37, .external_lex_state = 10}, + [1253] = {.lex_state = 37, .external_lex_state = 10}, + [1254] = {.lex_state = 37, .external_lex_state = 10}, + [1255] = {.lex_state = 37, .external_lex_state = 2}, + [1256] = {.lex_state = 37, .external_lex_state = 10}, + [1257] = {.lex_state = 37, .external_lex_state = 10}, + [1258] = {.lex_state = 37, .external_lex_state = 10}, + [1259] = {.lex_state = 37, .external_lex_state = 10}, + [1260] = {.lex_state = 37, .external_lex_state = 10}, + [1261] = {.lex_state = 37, .external_lex_state = 10}, + [1262] = {.lex_state = 37, .external_lex_state = 10}, + [1263] = {.lex_state = 37, .external_lex_state = 10}, + [1264] = {.lex_state = 37, .external_lex_state = 10}, + [1265] = {.lex_state = 37, .external_lex_state = 10}, + [1266] = {.lex_state = 37, .external_lex_state = 10}, + [1267] = {.lex_state = 37, .external_lex_state = 10}, + [1268] = {.lex_state = 37, .external_lex_state = 10}, + [1269] = {.lex_state = 37, .external_lex_state = 10}, + [1270] = {.lex_state = 37, .external_lex_state = 10}, + [1271] = {.lex_state = 37, .external_lex_state = 10}, + [1272] = {.lex_state = 37, .external_lex_state = 10}, + [1273] = {.lex_state = 37, .external_lex_state = 10}, + [1274] = {.lex_state = 37, .external_lex_state = 10}, + [1275] = {.lex_state = 37, .external_lex_state = 10}, + [1276] = {.lex_state = 37, .external_lex_state = 10}, + [1277] = {.lex_state = 37, .external_lex_state = 10}, + [1278] = {.lex_state = 37, .external_lex_state = 13}, + [1279] = {.lex_state = 37, .external_lex_state = 13}, + [1280] = {.lex_state = 37, .external_lex_state = 11}, + [1281] = {.lex_state = 37, .external_lex_state = 12}, + [1282] = {.lex_state = 37, .external_lex_state = 12}, + [1283] = {.lex_state = 37, .external_lex_state = 12}, + [1284] = {.lex_state = 37, .external_lex_state = 11}, + [1285] = {.lex_state = 37, .external_lex_state = 12}, + [1286] = {.lex_state = 37, .external_lex_state = 11}, + [1287] = {.lex_state = 37, .external_lex_state = 13}, + [1288] = {.lex_state = 37, .external_lex_state = 13}, + [1289] = {.lex_state = 37, .external_lex_state = 13}, + [1290] = {.lex_state = 37, .external_lex_state = 11}, + [1291] = {.lex_state = 37, .external_lex_state = 11}, + [1292] = {.lex_state = 37, .external_lex_state = 11}, + [1293] = {.lex_state = 37, .external_lex_state = 12}, + [1294] = {.lex_state = 37, .external_lex_state = 11}, + [1295] = {.lex_state = 37, .external_lex_state = 13}, + [1296] = {.lex_state = 37, .external_lex_state = 12}, + [1297] = {.lex_state = 37, .external_lex_state = 13}, + [1298] = {.lex_state = 37, .external_lex_state = 13}, + [1299] = {.lex_state = 37, .external_lex_state = 11}, + [1300] = {.lex_state = 37, .external_lex_state = 12}, + [1301] = {.lex_state = 37, .external_lex_state = 11}, + [1302] = {.lex_state = 37, .external_lex_state = 12}, + [1303] = {.lex_state = 37, .external_lex_state = 11}, + [1304] = {.lex_state = 37, .external_lex_state = 11}, + [1305] = {.lex_state = 33, .external_lex_state = 9}, + [1306] = {.lex_state = 33, .external_lex_state = 9}, + [1307] = {.lex_state = 37, .external_lex_state = 11}, + [1308] = {.lex_state = 37, .external_lex_state = 11}, + [1309] = {.lex_state = 37, .external_lex_state = 11}, + [1310] = {.lex_state = 37, .external_lex_state = 13}, + [1311] = {.lex_state = 37, .external_lex_state = 11}, + [1312] = {.lex_state = 38, .external_lex_state = 13}, + [1313] = {.lex_state = 37, .external_lex_state = 11}, + [1314] = {.lex_state = 37, .external_lex_state = 11}, + [1315] = {.lex_state = 37, .external_lex_state = 12}, + [1316] = {.lex_state = 37, .external_lex_state = 11}, + [1317] = {.lex_state = 37, .external_lex_state = 12}, + [1318] = {.lex_state = 38, .external_lex_state = 13}, + [1319] = {.lex_state = 37, .external_lex_state = 9}, + [1320] = {.lex_state = 38, .external_lex_state = 13}, + [1321] = {.lex_state = 37, .external_lex_state = 13}, + [1322] = {.lex_state = 37, .external_lex_state = 13}, + [1323] = {.lex_state = 37, .external_lex_state = 12}, + [1324] = {.lex_state = 37, .external_lex_state = 12}, + [1325] = {.lex_state = 37, .external_lex_state = 12}, + [1326] = {.lex_state = 37, .external_lex_state = 12}, + [1327] = {.lex_state = 37, .external_lex_state = 12}, + [1328] = {.lex_state = 37, .external_lex_state = 11}, + [1329] = {.lex_state = 37, .external_lex_state = 11}, + [1330] = {.lex_state = 37, .external_lex_state = 13}, + [1331] = {.lex_state = 37, .external_lex_state = 12}, + [1332] = {.lex_state = 37, .external_lex_state = 12}, + [1333] = {.lex_state = 37, .external_lex_state = 12}, + [1334] = {.lex_state = 37, .external_lex_state = 12}, + [1335] = {.lex_state = 37, .external_lex_state = 12}, + [1336] = {.lex_state = 37, .external_lex_state = 13}, + [1337] = {.lex_state = 37, .external_lex_state = 13}, + [1338] = {.lex_state = 37, .external_lex_state = 11}, + [1339] = {.lex_state = 37, .external_lex_state = 11}, + [1340] = {.lex_state = 37, .external_lex_state = 12}, + [1341] = {.lex_state = 37, .external_lex_state = 11}, + [1342] = {.lex_state = 37, .external_lex_state = 12}, + [1343] = {.lex_state = 37, .external_lex_state = 12}, + [1344] = {.lex_state = 37, .external_lex_state = 11}, + [1345] = {.lex_state = 37, .external_lex_state = 13}, + [1346] = {.lex_state = 37, .external_lex_state = 11}, + [1347] = {.lex_state = 37, .external_lex_state = 11}, + [1348] = {.lex_state = 37, .external_lex_state = 11}, + [1349] = {.lex_state = 37, .external_lex_state = 11}, + [1350] = {.lex_state = 37, .external_lex_state = 13}, + [1351] = {.lex_state = 37, .external_lex_state = 11}, + [1352] = {.lex_state = 37, .external_lex_state = 11}, + [1353] = {.lex_state = 37, .external_lex_state = 11}, + [1354] = {.lex_state = 37, .external_lex_state = 11}, + [1355] = {.lex_state = 38, .external_lex_state = 11}, + [1356] = {.lex_state = 37, .external_lex_state = 12}, + [1357] = {.lex_state = 37, .external_lex_state = 12}, + [1358] = {.lex_state = 38, .external_lex_state = 11}, + [1359] = {.lex_state = 37, .external_lex_state = 12}, + [1360] = {.lex_state = 38, .external_lex_state = 11}, + [1361] = {.lex_state = 37, .external_lex_state = 11}, + [1362] = {.lex_state = 37, .external_lex_state = 13}, + [1363] = {.lex_state = 37, .external_lex_state = 11}, + [1364] = {.lex_state = 37, .external_lex_state = 12}, + [1365] = {.lex_state = 37, .external_lex_state = 11}, + [1366] = {.lex_state = 37, .external_lex_state = 11}, + [1367] = {.lex_state = 37, .external_lex_state = 11}, + [1368] = {.lex_state = 37, .external_lex_state = 11}, + [1369] = {.lex_state = 37, .external_lex_state = 11}, + [1370] = {.lex_state = 37, .external_lex_state = 11}, + [1371] = {.lex_state = 37, .external_lex_state = 11}, + [1372] = {.lex_state = 37, .external_lex_state = 11}, + [1373] = {.lex_state = 37, .external_lex_state = 11}, + [1374] = {.lex_state = 37, .external_lex_state = 11}, + [1375] = {.lex_state = 37, .external_lex_state = 13}, + [1376] = {.lex_state = 37, .external_lex_state = 11}, + [1377] = {.lex_state = 37, .external_lex_state = 13}, + [1378] = {.lex_state = 37, .external_lex_state = 11}, + [1379] = {.lex_state = 37, .external_lex_state = 11}, + [1380] = {.lex_state = 37, .external_lex_state = 12}, + [1381] = {.lex_state = 37, .external_lex_state = 12}, + [1382] = {.lex_state = 37, .external_lex_state = 11}, + [1383] = {.lex_state = 37, .external_lex_state = 11}, + [1384] = {.lex_state = 37, .external_lex_state = 12}, + [1385] = {.lex_state = 37, .external_lex_state = 13}, + [1386] = {.lex_state = 37, .external_lex_state = 11}, + [1387] = {.lex_state = 37, .external_lex_state = 11}, + [1388] = {.lex_state = 37, .external_lex_state = 11}, + [1389] = {.lex_state = 37, .external_lex_state = 11}, + [1390] = {.lex_state = 37, .external_lex_state = 11}, + [1391] = {.lex_state = 37, .external_lex_state = 11}, + [1392] = {.lex_state = 37, .external_lex_state = 13}, + [1393] = {.lex_state = 37, .external_lex_state = 13}, + [1394] = {.lex_state = 37, .external_lex_state = 13}, + [1395] = {.lex_state = 37, .external_lex_state = 13}, + [1396] = {.lex_state = 37, .external_lex_state = 11}, + [1397] = {.lex_state = 37, .external_lex_state = 13}, + [1398] = {.lex_state = 37, .external_lex_state = 13}, + [1399] = {.lex_state = 37, .external_lex_state = 12}, + [1400] = {.lex_state = 37, .external_lex_state = 13}, + [1401] = {.lex_state = 37, .external_lex_state = 11}, + [1402] = {.lex_state = 33, .external_lex_state = 9}, + [1403] = {.lex_state = 37, .external_lex_state = 13}, + [1404] = {.lex_state = 37, .external_lex_state = 13}, + [1405] = {.lex_state = 37, .external_lex_state = 11}, + [1406] = {.lex_state = 37, .external_lex_state = 11}, + [1407] = {.lex_state = 37, .external_lex_state = 11}, + [1408] = {.lex_state = 37, .external_lex_state = 11}, + [1409] = {.lex_state = 37, .external_lex_state = 11}, + [1410] = {.lex_state = 37, .external_lex_state = 13}, + [1411] = {.lex_state = 37, .external_lex_state = 13}, + [1412] = {.lex_state = 37, .external_lex_state = 11}, + [1413] = {.lex_state = 37, .external_lex_state = 12}, + [1414] = {.lex_state = 37, .external_lex_state = 13}, + [1415] = {.lex_state = 37, .external_lex_state = 12}, + [1416] = {.lex_state = 37, .external_lex_state = 13}, + [1417] = {.lex_state = 37, .external_lex_state = 12}, + [1418] = {.lex_state = 33, .external_lex_state = 9}, + [1419] = {.lex_state = 33, .external_lex_state = 9}, + [1420] = {.lex_state = 37, .external_lex_state = 13}, + [1421] = {.lex_state = 37, .external_lex_state = 11}, [1422] = {.lex_state = 33, .external_lex_state = 9}, - [1423] = {.lex_state = 34, .external_lex_state = 13}, - [1424] = {.lex_state = 34, .external_lex_state = 12}, - [1425] = {.lex_state = 34, .external_lex_state = 11}, - [1426] = {.lex_state = 34, .external_lex_state = 11}, - [1427] = {.lex_state = 34, .external_lex_state = 8}, - [1428] = {.lex_state = 34, .external_lex_state = 12}, - [1429] = {.lex_state = 34, .external_lex_state = 13}, - [1430] = {.lex_state = 34, .external_lex_state = 12}, - [1431] = {.lex_state = 34, .external_lex_state = 11}, - [1432] = {.lex_state = 34, .external_lex_state = 11}, - [1433] = {.lex_state = 34, .external_lex_state = 13}, - [1434] = {.lex_state = 34, .external_lex_state = 11}, - [1435] = {.lex_state = 34, .external_lex_state = 13}, - [1436] = {.lex_state = 34, .external_lex_state = 11}, - [1437] = {.lex_state = 34, .external_lex_state = 11}, - [1438] = {.lex_state = 34, .external_lex_state = 11}, - [1439] = {.lex_state = 33, .external_lex_state = 9}, - [1440] = {.lex_state = 34, .external_lex_state = 12}, - [1441] = {.lex_state = 34, .external_lex_state = 12}, - [1442] = {.lex_state = 34, .external_lex_state = 11}, - [1443] = {.lex_state = 33, .external_lex_state = 9}, - [1444] = {.lex_state = 33, .external_lex_state = 9}, - [1445] = {.lex_state = 34, .external_lex_state = 13}, - [1446] = {.lex_state = 34, .external_lex_state = 11}, - [1447] = {.lex_state = 34, .external_lex_state = 11}, - [1448] = {.lex_state = 34, .external_lex_state = 11}, - [1449] = {.lex_state = 33, .external_lex_state = 9}, - [1450] = {.lex_state = 34, .external_lex_state = 11}, - [1451] = {.lex_state = 38, .external_lex_state = 11}, - [1452] = {.lex_state = 34, .external_lex_state = 12}, - [1453] = {.lex_state = 34, .external_lex_state = 12}, - [1454] = {.lex_state = 34, .external_lex_state = 12}, - [1455] = {.lex_state = 38, .external_lex_state = 12}, - [1456] = {.lex_state = 38, .external_lex_state = 12}, - [1457] = {.lex_state = 38, .external_lex_state = 12}, - [1458] = {.lex_state = 34, .external_lex_state = 12}, - [1459] = {.lex_state = 34, .external_lex_state = 12}, - [1460] = {.lex_state = 34, .external_lex_state = 12}, - [1461] = {.lex_state = 34, .external_lex_state = 12}, - [1462] = {.lex_state = 34, .external_lex_state = 12}, - [1463] = {.lex_state = 34, .external_lex_state = 12}, - [1464] = {.lex_state = 38, .external_lex_state = 10}, - [1465] = {.lex_state = 34, .external_lex_state = 12}, - [1466] = {.lex_state = 38, .external_lex_state = 10}, - [1467] = {.lex_state = 34, .external_lex_state = 12}, - [1468] = {.lex_state = 38, .external_lex_state = 10}, - [1469] = {.lex_state = 34, .external_lex_state = 12}, + [1423] = {.lex_state = 37, .external_lex_state = 13}, + [1424] = {.lex_state = 37, .external_lex_state = 13}, + [1425] = {.lex_state = 37, .external_lex_state = 11}, + [1426] = {.lex_state = 37, .external_lex_state = 11}, + [1427] = {.lex_state = 37, .external_lex_state = 11}, + [1428] = {.lex_state = 37, .external_lex_state = 11}, + [1429] = {.lex_state = 37, .external_lex_state = 12}, + [1430] = {.lex_state = 37, .external_lex_state = 12}, + [1431] = {.lex_state = 37, .external_lex_state = 11}, + [1432] = {.lex_state = 37, .external_lex_state = 11}, + [1433] = {.lex_state = 37, .external_lex_state = 8}, + [1434] = {.lex_state = 37, .external_lex_state = 13}, + [1435] = {.lex_state = 37, .external_lex_state = 13}, + [1436] = {.lex_state = 37, .external_lex_state = 11}, + [1437] = {.lex_state = 37, .external_lex_state = 8}, + [1438] = {.lex_state = 37, .external_lex_state = 13}, + [1439] = {.lex_state = 37, .external_lex_state = 13}, + [1440] = {.lex_state = 37, .external_lex_state = 13}, + [1441] = {.lex_state = 37, .external_lex_state = 13}, + [1442] = {.lex_state = 37, .external_lex_state = 13}, + [1443] = {.lex_state = 37, .external_lex_state = 13}, + [1444] = {.lex_state = 37, .external_lex_state = 13}, + [1445] = {.lex_state = 37, .external_lex_state = 13}, + [1446] = {.lex_state = 37, .external_lex_state = 13}, + [1447] = {.lex_state = 37, .external_lex_state = 13}, + [1448] = {.lex_state = 37, .external_lex_state = 13}, + [1449] = {.lex_state = 37, .external_lex_state = 13}, + [1450] = {.lex_state = 37, .external_lex_state = 13}, + [1451] = {.lex_state = 37, .external_lex_state = 13}, + [1452] = {.lex_state = 37, .external_lex_state = 13}, + [1453] = {.lex_state = 37, .external_lex_state = 13}, + [1454] = {.lex_state = 37, .external_lex_state = 13}, + [1455] = {.lex_state = 37, .external_lex_state = 13}, + [1456] = {.lex_state = 37, .external_lex_state = 13}, + [1457] = {.lex_state = 37, .external_lex_state = 13}, + [1458] = {.lex_state = 37, .external_lex_state = 13}, + [1459] = {.lex_state = 37, .external_lex_state = 13}, + [1460] = {.lex_state = 37, .external_lex_state = 13}, + [1461] = {.lex_state = 37, .external_lex_state = 13}, + [1462] = {.lex_state = 37, .external_lex_state = 13}, + [1463] = {.lex_state = 37, .external_lex_state = 13}, + [1464] = {.lex_state = 37, .external_lex_state = 13}, + [1465] = {.lex_state = 37, .external_lex_state = 13}, + [1466] = {.lex_state = 37, .external_lex_state = 13}, + [1467] = {.lex_state = 37, .external_lex_state = 13}, + [1468] = {.lex_state = 37, .external_lex_state = 13}, + [1469] = {.lex_state = 38, .external_lex_state = 11}, [1470] = {.lex_state = 38, .external_lex_state = 11}, [1471] = {.lex_state = 38, .external_lex_state = 11}, - [1472] = {.lex_state = 34, .external_lex_state = 12}, - [1473] = {.lex_state = 34, .external_lex_state = 12}, - [1474] = {.lex_state = 34, .external_lex_state = 12}, - [1475] = {.lex_state = 34, .external_lex_state = 12}, - [1476] = {.lex_state = 34, .external_lex_state = 12}, - [1477] = {.lex_state = 34, .external_lex_state = 12}, - [1478] = {.lex_state = 34, .external_lex_state = 12}, - [1479] = {.lex_state = 34, .external_lex_state = 12}, - [1480] = {.lex_state = 34, .external_lex_state = 12}, - [1481] = {.lex_state = 34, .external_lex_state = 12}, - [1482] = {.lex_state = 34, .external_lex_state = 12}, - [1483] = {.lex_state = 34, .external_lex_state = 12}, - [1484] = {.lex_state = 34, .external_lex_state = 12}, - [1485] = {.lex_state = 34, .external_lex_state = 12}, - [1486] = {.lex_state = 34, .external_lex_state = 12}, - [1487] = {.lex_state = 34, .external_lex_state = 13}, - [1488] = {.lex_state = 34, .external_lex_state = 12}, - [1489] = {.lex_state = 34, .external_lex_state = 12}, - [1490] = {.lex_state = 34, .external_lex_state = 12}, - [1491] = {.lex_state = 34, .external_lex_state = 12}, - [1492] = {.lex_state = 34, .external_lex_state = 12}, - [1493] = {.lex_state = 34, .external_lex_state = 12}, - [1494] = {.lex_state = 34, .external_lex_state = 12}, - [1495] = {.lex_state = 34, .external_lex_state = 12}, - [1496] = {.lex_state = 34, .external_lex_state = 12}, - [1497] = {.lex_state = 34, .external_lex_state = 12}, - [1498] = {.lex_state = 33, .external_lex_state = 13}, - [1499] = {.lex_state = 33, .external_lex_state = 13}, - [1500] = {.lex_state = 33, .external_lex_state = 13}, - [1501] = {.lex_state = 33, .external_lex_state = 13}, - [1502] = {.lex_state = 33, .external_lex_state = 13}, - [1503] = {.lex_state = 33, .external_lex_state = 13}, - [1504] = {.lex_state = 34, .external_lex_state = 10}, - [1505] = {.lex_state = 34, .external_lex_state = 12}, - [1506] = {.lex_state = 34, .external_lex_state = 11}, - [1507] = {.lex_state = 33, .external_lex_state = 13}, - [1508] = {.lex_state = 33, .external_lex_state = 13}, - [1509] = {.lex_state = 33, .external_lex_state = 13}, - [1510] = {.lex_state = 33, .external_lex_state = 13}, - [1511] = {.lex_state = 33, .external_lex_state = 13}, - [1512] = {.lex_state = 33, .external_lex_state = 13}, - [1513] = {.lex_state = 33, .external_lex_state = 13}, - [1514] = {.lex_state = 33, .external_lex_state = 13}, - [1515] = {.lex_state = 33, .external_lex_state = 13}, - [1516] = {.lex_state = 33, .external_lex_state = 13}, - [1517] = {.lex_state = 33, .external_lex_state = 9}, - [1518] = {.lex_state = 33, .external_lex_state = 9}, - [1519] = {.lex_state = 34, .external_lex_state = 10}, - [1520] = {.lex_state = 34, .external_lex_state = 10}, - [1521] = {.lex_state = 34, .external_lex_state = 10}, - [1522] = {.lex_state = 34, .external_lex_state = 10}, - [1523] = {.lex_state = 34, .external_lex_state = 10}, - [1524] = {.lex_state = 34, .external_lex_state = 10}, - [1525] = {.lex_state = 33, .external_lex_state = 13}, - [1526] = {.lex_state = 33, .external_lex_state = 11}, - [1527] = {.lex_state = 33, .external_lex_state = 13}, - [1528] = {.lex_state = 33, .external_lex_state = 11}, - [1529] = {.lex_state = 33, .external_lex_state = 12}, - [1530] = {.lex_state = 54, .external_lex_state = 10}, - [1531] = {.lex_state = 54, .external_lex_state = 10}, - [1532] = {.lex_state = 33, .external_lex_state = 12}, - [1533] = {.lex_state = 54, .external_lex_state = 10}, - [1534] = {.lex_state = 54, .external_lex_state = 10}, - [1535] = {.lex_state = 54, .external_lex_state = 11}, - [1536] = {.lex_state = 36, .external_lex_state = 9}, - [1537] = {.lex_state = 36, .external_lex_state = 9}, - [1538] = {.lex_state = 54, .external_lex_state = 12}, - [1539] = {.lex_state = 34, .external_lex_state = 11}, - [1540] = {.lex_state = 54, .external_lex_state = 11}, - [1541] = {.lex_state = 34, .external_lex_state = 11}, - [1542] = {.lex_state = 34, .external_lex_state = 11}, - [1543] = {.lex_state = 34, .external_lex_state = 11}, - [1544] = {.lex_state = 34, .external_lex_state = 11}, - [1545] = {.lex_state = 54, .external_lex_state = 12}, - [1546] = {.lex_state = 34, .external_lex_state = 11}, - [1547] = {.lex_state = 34, .external_lex_state = 13}, - [1548] = {.lex_state = 34, .external_lex_state = 12}, - [1549] = {.lex_state = 34, .external_lex_state = 13}, - [1550] = {.lex_state = 34, .external_lex_state = 11}, - [1551] = {.lex_state = 34, .external_lex_state = 12}, - [1552] = {.lex_state = 34, .external_lex_state = 13}, - [1553] = {.lex_state = 36, .external_lex_state = 9}, - [1554] = {.lex_state = 34, .external_lex_state = 13}, - [1555] = {.lex_state = 34, .external_lex_state = 13}, - [1556] = {.lex_state = 34, .external_lex_state = 13}, - [1557] = {.lex_state = 34, .external_lex_state = 13}, - [1558] = {.lex_state = 34, .external_lex_state = 12}, - [1559] = {.lex_state = 34, .external_lex_state = 13}, - [1560] = {.lex_state = 36, .external_lex_state = 9}, - [1561] = {.lex_state = 34, .external_lex_state = 12}, - [1562] = {.lex_state = 34, .external_lex_state = 13}, - [1563] = {.lex_state = 34, .external_lex_state = 13}, - [1564] = {.lex_state = 34, .external_lex_state = 13}, - [1565] = {.lex_state = 34, .external_lex_state = 13}, - [1566] = {.lex_state = 34, .external_lex_state = 12}, - [1567] = {.lex_state = 34, .external_lex_state = 11}, - [1568] = {.lex_state = 34, .external_lex_state = 11}, - [1569] = {.lex_state = 34, .external_lex_state = 11}, - [1570] = {.lex_state = 34, .external_lex_state = 13}, - [1571] = {.lex_state = 36, .external_lex_state = 9}, - [1572] = {.lex_state = 34, .external_lex_state = 13}, - [1573] = {.lex_state = 34, .external_lex_state = 13}, - [1574] = {.lex_state = 36, .external_lex_state = 9}, - [1575] = {.lex_state = 34, .external_lex_state = 11}, - [1576] = {.lex_state = 34, .external_lex_state = 12}, - [1577] = {.lex_state = 34, .external_lex_state = 13}, - [1578] = {.lex_state = 34, .external_lex_state = 13}, - [1579] = {.lex_state = 34, .external_lex_state = 13}, - [1580] = {.lex_state = 34, .external_lex_state = 13}, - [1581] = {.lex_state = 34, .external_lex_state = 13}, - [1582] = {.lex_state = 34, .external_lex_state = 11}, - [1583] = {.lex_state = 34, .external_lex_state = 13}, - [1584] = {.lex_state = 34, .external_lex_state = 13}, - [1585] = {.lex_state = 37, .external_lex_state = 13}, - [1586] = {.lex_state = 37, .external_lex_state = 13}, - [1587] = {.lex_state = 37, .external_lex_state = 13}, - [1588] = {.lex_state = 36, .external_lex_state = 13}, - [1589] = {.lex_state = 37, .external_lex_state = 13}, - [1590] = {.lex_state = 36, .external_lex_state = 13}, - [1591] = {.lex_state = 37, .external_lex_state = 13}, - [1592] = {.lex_state = 37, .external_lex_state = 13}, - [1593] = {.lex_state = 37, .external_lex_state = 13}, - [1594] = {.lex_state = 37, .external_lex_state = 13}, - [1595] = {.lex_state = 36, .external_lex_state = 13}, - [1596] = {.lex_state = 36, .external_lex_state = 13}, - [1597] = {.lex_state = 37, .external_lex_state = 13}, - [1598] = {.lex_state = 37, .external_lex_state = 13}, - [1599] = {.lex_state = 36, .external_lex_state = 13}, - [1600] = {.lex_state = 37, .external_lex_state = 13}, - [1601] = {.lex_state = 36, .external_lex_state = 13}, - [1602] = {.lex_state = 36, .external_lex_state = 9}, - [1603] = {.lex_state = 36, .external_lex_state = 13}, - [1604] = {.lex_state = 36, .external_lex_state = 13}, - [1605] = {.lex_state = 30, .external_lex_state = 11}, - [1606] = {.lex_state = 30, .external_lex_state = 11}, - [1607] = {.lex_state = 36, .external_lex_state = 13}, - [1608] = {.lex_state = 37, .external_lex_state = 13}, - [1609] = {.lex_state = 30, .external_lex_state = 11}, - [1610] = {.lex_state = 37, .external_lex_state = 13}, - [1611] = {.lex_state = 30, .external_lex_state = 13}, - [1612] = {.lex_state = 30, .external_lex_state = 13}, - [1613] = {.lex_state = 33, .external_lex_state = 9}, - [1614] = {.lex_state = 33, .external_lex_state = 9}, - [1615] = {.lex_state = 33, .external_lex_state = 9}, - [1616] = {.lex_state = 54, .external_lex_state = 10}, - [1617] = {.lex_state = 33, .external_lex_state = 9}, - [1618] = {.lex_state = 33, .external_lex_state = 9}, - [1619] = {.lex_state = 33, .external_lex_state = 9}, - [1620] = {.lex_state = 33, .external_lex_state = 9}, - [1621] = {.lex_state = 33, .external_lex_state = 9}, - [1622] = {.lex_state = 54, .external_lex_state = 10}, - [1623] = {.lex_state = 54, .external_lex_state = 10}, - [1624] = {.lex_state = 54, .external_lex_state = 10}, - [1625] = {.lex_state = 54, .external_lex_state = 10}, - [1626] = {.lex_state = 54, .external_lex_state = 10}, - [1627] = {.lex_state = 54, .external_lex_state = 10}, - [1628] = {.lex_state = 54, .external_lex_state = 10}, - [1629] = {.lex_state = 33, .external_lex_state = 9}, - [1630] = {.lex_state = 54, .external_lex_state = 11}, - [1631] = {.lex_state = 54, .external_lex_state = 11}, - [1632] = {.lex_state = 54, .external_lex_state = 11}, - [1633] = {.lex_state = 54, .external_lex_state = 11}, - [1634] = {.lex_state = 33, .external_lex_state = 9}, - [1635] = {.lex_state = 54, .external_lex_state = 11}, - [1636] = {.lex_state = 54, .external_lex_state = 11}, - [1637] = {.lex_state = 54, .external_lex_state = 11}, - [1638] = {.lex_state = 54, .external_lex_state = 12}, - [1639] = {.lex_state = 54, .external_lex_state = 11}, - [1640] = {.lex_state = 54, .external_lex_state = 12}, - [1641] = {.lex_state = 54, .external_lex_state = 12}, - [1642] = {.lex_state = 54, .external_lex_state = 11}, - [1643] = {.lex_state = 54, .external_lex_state = 11}, - [1644] = {.lex_state = 54, .external_lex_state = 11}, - [1645] = {.lex_state = 54, .external_lex_state = 11}, - [1646] = {.lex_state = 54, .external_lex_state = 12}, - [1647] = {.lex_state = 54, .external_lex_state = 12}, - [1648] = {.lex_state = 54, .external_lex_state = 11}, - [1649] = {.lex_state = 54, .external_lex_state = 12}, - [1650] = {.lex_state = 54, .external_lex_state = 11}, - [1651] = {.lex_state = 54, .external_lex_state = 11}, - [1652] = {.lex_state = 54, .external_lex_state = 12}, - [1653] = {.lex_state = 54, .external_lex_state = 11}, - [1654] = {.lex_state = 54, .external_lex_state = 11}, - [1655] = {.lex_state = 54, .external_lex_state = 12}, - [1656] = {.lex_state = 33, .external_lex_state = 11}, - [1657] = {.lex_state = 0, .external_lex_state = 14}, - [1658] = {.lex_state = 0, .external_lex_state = 14}, - [1659] = {.lex_state = 33, .external_lex_state = 13}, - [1660] = {.lex_state = 33, .external_lex_state = 11}, - [1661] = {.lex_state = 0, .external_lex_state = 14}, - [1662] = {.lex_state = 54, .external_lex_state = 10}, - [1663] = {.lex_state = 33, .external_lex_state = 13}, - [1664] = {.lex_state = 33, .external_lex_state = 13}, - [1665] = {.lex_state = 33, .external_lex_state = 13}, - [1666] = {.lex_state = 0, .external_lex_state = 14}, - [1667] = {.lex_state = 54, .external_lex_state = 10}, - [1668] = {.lex_state = 0, .external_lex_state = 14}, - [1669] = {.lex_state = 33, .external_lex_state = 13}, - [1670] = {.lex_state = 0, .external_lex_state = 14}, - [1671] = {.lex_state = 33, .external_lex_state = 11}, - [1672] = {.lex_state = 0, .external_lex_state = 14}, - [1673] = {.lex_state = 33, .external_lex_state = 9}, - [1674] = {.lex_state = 0, .external_lex_state = 14}, - [1675] = {.lex_state = 0, .external_lex_state = 14}, - [1676] = {.lex_state = 33, .external_lex_state = 11}, - [1677] = {.lex_state = 33, .external_lex_state = 13}, - [1678] = {.lex_state = 0, .external_lex_state = 14}, - [1679] = {.lex_state = 0, .external_lex_state = 14}, - [1680] = {.lex_state = 33, .external_lex_state = 11}, - [1681] = {.lex_state = 33, .external_lex_state = 11}, - [1682] = {.lex_state = 33, .external_lex_state = 11}, - [1683] = {.lex_state = 33, .external_lex_state = 11}, - [1684] = {.lex_state = 0, .external_lex_state = 14}, - [1685] = {.lex_state = 0, .external_lex_state = 14}, - [1686] = {.lex_state = 33, .external_lex_state = 11}, - [1687] = {.lex_state = 0, .external_lex_state = 14}, - [1688] = {.lex_state = 33, .external_lex_state = 13}, - [1689] = {.lex_state = 33, .external_lex_state = 11}, - [1690] = {.lex_state = 0, .external_lex_state = 14}, - [1691] = {.lex_state = 33, .external_lex_state = 13}, - [1692] = {.lex_state = 33, .external_lex_state = 13}, - [1693] = {.lex_state = 0, .external_lex_state = 14}, - [1694] = {.lex_state = 0, .external_lex_state = 14}, - [1695] = {.lex_state = 0, .external_lex_state = 14}, - [1696] = {.lex_state = 0, .external_lex_state = 14}, - [1697] = {.lex_state = 54, .external_lex_state = 10}, - [1698] = {.lex_state = 54, .external_lex_state = 10}, - [1699] = {.lex_state = 54, .external_lex_state = 10}, - [1700] = {.lex_state = 54, .external_lex_state = 10}, - [1701] = {.lex_state = 33, .external_lex_state = 12}, - [1702] = {.lex_state = 33, .external_lex_state = 12}, - [1703] = {.lex_state = 33, .external_lex_state = 12}, - [1704] = {.lex_state = 33, .external_lex_state = 12}, - [1705] = {.lex_state = 54, .external_lex_state = 9}, - [1706] = {.lex_state = 54, .external_lex_state = 10}, - [1707] = {.lex_state = 54, .external_lex_state = 10}, - [1708] = {.lex_state = 54, .external_lex_state = 10}, - [1709] = {.lex_state = 54, .external_lex_state = 10}, - [1710] = {.lex_state = 33, .external_lex_state = 12}, - [1711] = {.lex_state = 54, .external_lex_state = 10}, - [1712] = {.lex_state = 54, .external_lex_state = 10}, - [1713] = {.lex_state = 54, .external_lex_state = 10}, - [1714] = {.lex_state = 54, .external_lex_state = 10}, - [1715] = {.lex_state = 33, .external_lex_state = 12}, - [1716] = {.lex_state = 54, .external_lex_state = 10}, - [1717] = {.lex_state = 54, .external_lex_state = 10}, - [1718] = {.lex_state = 54, .external_lex_state = 10}, - [1719] = {.lex_state = 54, .external_lex_state = 10}, - [1720] = {.lex_state = 33, .external_lex_state = 12}, - [1721] = {.lex_state = 33, .external_lex_state = 12}, - [1722] = {.lex_state = 33, .external_lex_state = 13}, - [1723] = {.lex_state = 54, .external_lex_state = 10}, - [1724] = {.lex_state = 33, .external_lex_state = 12}, - [1725] = {.lex_state = 33, .external_lex_state = 12}, - [1726] = {.lex_state = 54, .external_lex_state = 10}, - [1727] = {.lex_state = 54, .external_lex_state = 10}, - [1728] = {.lex_state = 54, .external_lex_state = 10}, - [1729] = {.lex_state = 54, .external_lex_state = 11}, - [1730] = {.lex_state = 54, .external_lex_state = 12}, - [1731] = {.lex_state = 54, .external_lex_state = 10}, - [1732] = {.lex_state = 54, .external_lex_state = 12}, - [1733] = {.lex_state = 54, .external_lex_state = 12}, - [1734] = {.lex_state = 54, .external_lex_state = 11}, - [1735] = {.lex_state = 35, .external_lex_state = 13}, - [1736] = {.lex_state = 54, .external_lex_state = 9}, - [1737] = {.lex_state = 54, .external_lex_state = 9}, - [1738] = {.lex_state = 35, .external_lex_state = 13}, - [1739] = {.lex_state = 54, .external_lex_state = 11}, - [1740] = {.lex_state = 54, .external_lex_state = 13}, - [1741] = {.lex_state = 54, .external_lex_state = 13}, - [1742] = {.lex_state = 54, .external_lex_state = 12}, - [1743] = {.lex_state = 54, .external_lex_state = 11}, - [1744] = {.lex_state = 35, .external_lex_state = 13}, - [1745] = {.lex_state = 54, .external_lex_state = 11}, - [1746] = {.lex_state = 54, .external_lex_state = 12}, - [1747] = {.lex_state = 54, .external_lex_state = 11}, - [1748] = {.lex_state = 54, .external_lex_state = 11}, - [1749] = {.lex_state = 54, .external_lex_state = 11}, - [1750] = {.lex_state = 54, .external_lex_state = 12}, - [1751] = {.lex_state = 54, .external_lex_state = 9}, - [1752] = {.lex_state = 54, .external_lex_state = 9}, - [1753] = {.lex_state = 54, .external_lex_state = 12}, - [1754] = {.lex_state = 54, .external_lex_state = 10}, - [1755] = {.lex_state = 54, .external_lex_state = 9}, - [1756] = {.lex_state = 54, .external_lex_state = 11}, - [1757] = {.lex_state = 54, .external_lex_state = 12}, - [1758] = {.lex_state = 54, .external_lex_state = 11}, - [1759] = {.lex_state = 54, .external_lex_state = 9}, + [1472] = {.lex_state = 37, .external_lex_state = 13}, + [1473] = {.lex_state = 37, .external_lex_state = 13}, + [1474] = {.lex_state = 37, .external_lex_state = 13}, + [1475] = {.lex_state = 37, .external_lex_state = 12}, + [1476] = {.lex_state = 37, .external_lex_state = 13}, + [1477] = {.lex_state = 37, .external_lex_state = 13}, + [1478] = {.lex_state = 38, .external_lex_state = 13}, + [1479] = {.lex_state = 38, .external_lex_state = 13}, + [1480] = {.lex_state = 37, .external_lex_state = 13}, + [1481] = {.lex_state = 38, .external_lex_state = 13}, + [1482] = {.lex_state = 37, .external_lex_state = 13}, + [1483] = {.lex_state = 37, .external_lex_state = 13}, + [1484] = {.lex_state = 37, .external_lex_state = 13}, + [1485] = {.lex_state = 37, .external_lex_state = 13}, + [1486] = {.lex_state = 38, .external_lex_state = 10}, + [1487] = {.lex_state = 38, .external_lex_state = 10}, + [1488] = {.lex_state = 38, .external_lex_state = 10}, + [1489] = {.lex_state = 33, .external_lex_state = 12}, + [1490] = {.lex_state = 33, .external_lex_state = 12}, + [1491] = {.lex_state = 33, .external_lex_state = 12}, + [1492] = {.lex_state = 33, .external_lex_state = 12}, + [1493] = {.lex_state = 33, .external_lex_state = 12}, + [1494] = {.lex_state = 33, .external_lex_state = 12}, + [1495] = {.lex_state = 33, .external_lex_state = 12}, + [1496] = {.lex_state = 33, .external_lex_state = 12}, + [1497] = {.lex_state = 33, .external_lex_state = 12}, + [1498] = {.lex_state = 33, .external_lex_state = 12}, + [1499] = {.lex_state = 33, .external_lex_state = 12}, + [1500] = {.lex_state = 33, .external_lex_state = 12}, + [1501] = {.lex_state = 37, .external_lex_state = 11}, + [1502] = {.lex_state = 33, .external_lex_state = 12}, + [1503] = {.lex_state = 37, .external_lex_state = 13}, + [1504] = {.lex_state = 33, .external_lex_state = 12}, + [1505] = {.lex_state = 33, .external_lex_state = 12}, + [1506] = {.lex_state = 37, .external_lex_state = 10}, + [1507] = {.lex_state = 33, .external_lex_state = 12}, + [1508] = {.lex_state = 36, .external_lex_state = 2}, + [1509] = {.lex_state = 36, .external_lex_state = 2}, + [1510] = {.lex_state = 30, .external_lex_state = 7}, + [1511] = {.lex_state = 30, .external_lex_state = 8}, + [1512] = {.lex_state = 30, .external_lex_state = 8}, + [1513] = {.lex_state = 30, .external_lex_state = 7}, + [1514] = {.lex_state = 30, .external_lex_state = 7}, + [1515] = {.lex_state = 30, .external_lex_state = 7}, + [1516] = {.lex_state = 30, .external_lex_state = 8}, + [1517] = {.lex_state = 30, .external_lex_state = 7}, + [1518] = {.lex_state = 30, .external_lex_state = 7}, + [1519] = {.lex_state = 30, .external_lex_state = 8}, + [1520] = {.lex_state = 30, .external_lex_state = 7}, + [1521] = {.lex_state = 30, .external_lex_state = 8}, + [1522] = {.lex_state = 30, .external_lex_state = 7}, + [1523] = {.lex_state = 30, .external_lex_state = 8}, + [1524] = {.lex_state = 30, .external_lex_state = 8}, + [1525] = {.lex_state = 30, .external_lex_state = 7}, + [1526] = {.lex_state = 30, .external_lex_state = 7}, + [1527] = {.lex_state = 30, .external_lex_state = 8}, + [1528] = {.lex_state = 30, .external_lex_state = 7}, + [1529] = {.lex_state = 30, .external_lex_state = 8}, + [1530] = {.lex_state = 30, .external_lex_state = 8}, + [1531] = {.lex_state = 30, .external_lex_state = 7}, + [1532] = {.lex_state = 30, .external_lex_state = 7}, + [1533] = {.lex_state = 30, .external_lex_state = 8}, + [1534] = {.lex_state = 30, .external_lex_state = 7}, + [1535] = {.lex_state = 30, .external_lex_state = 7}, + [1536] = {.lex_state = 30, .external_lex_state = 7}, + [1537] = {.lex_state = 30, .external_lex_state = 7}, + [1538] = {.lex_state = 30, .external_lex_state = 7}, + [1539] = {.lex_state = 30, .external_lex_state = 7}, + [1540] = {.lex_state = 30, .external_lex_state = 7}, + [1541] = {.lex_state = 30, .external_lex_state = 7}, + [1542] = {.lex_state = 30, .external_lex_state = 7}, + [1543] = {.lex_state = 30, .external_lex_state = 7}, + [1544] = {.lex_state = 30, .external_lex_state = 8}, + [1545] = {.lex_state = 30, .external_lex_state = 7}, + [1546] = {.lex_state = 30, .external_lex_state = 2}, + [1547] = {.lex_state = 30, .external_lex_state = 2}, + [1548] = {.lex_state = 30, .external_lex_state = 2}, + [1549] = {.lex_state = 30, .external_lex_state = 2}, + [1550] = {.lex_state = 30, .external_lex_state = 2}, + [1551] = {.lex_state = 30, .external_lex_state = 6}, + [1552] = {.lex_state = 30, .external_lex_state = 6}, + [1553] = {.lex_state = 30, .external_lex_state = 6}, + [1554] = {.lex_state = 30, .external_lex_state = 6}, + [1555] = {.lex_state = 30, .external_lex_state = 6}, + [1556] = {.lex_state = 30, .external_lex_state = 6}, + [1557] = {.lex_state = 30, .external_lex_state = 6}, + [1558] = {.lex_state = 30, .external_lex_state = 6}, + [1559] = {.lex_state = 30, .external_lex_state = 6}, + [1560] = {.lex_state = 30, .external_lex_state = 6}, + [1561] = {.lex_state = 30, .external_lex_state = 6}, + [1562] = {.lex_state = 30, .external_lex_state = 6}, + [1563] = {.lex_state = 30, .external_lex_state = 6}, + [1564] = {.lex_state = 30, .external_lex_state = 6}, + [1565] = {.lex_state = 30, .external_lex_state = 6}, + [1566] = {.lex_state = 30, .external_lex_state = 6}, + [1567] = {.lex_state = 30, .external_lex_state = 6}, + [1568] = {.lex_state = 30, .external_lex_state = 6}, + [1569] = {.lex_state = 30, .external_lex_state = 6}, + [1570] = {.lex_state = 30, .external_lex_state = 6}, + [1571] = {.lex_state = 30, .external_lex_state = 2}, + [1572] = {.lex_state = 30, .external_lex_state = 2}, + [1573] = {.lex_state = 30, .external_lex_state = 2}, + [1574] = {.lex_state = 30, .external_lex_state = 2}, + [1575] = {.lex_state = 30, .external_lex_state = 2}, + [1576] = {.lex_state = 30, .external_lex_state = 2}, + [1577] = {.lex_state = 30, .external_lex_state = 2}, + [1578] = {.lex_state = 30, .external_lex_state = 2}, + [1579] = {.lex_state = 30, .external_lex_state = 2}, + [1580] = {.lex_state = 33, .external_lex_state = 9}, + [1581] = {.lex_state = 33, .external_lex_state = 9}, + [1582] = {.lex_state = 37, .external_lex_state = 10}, + [1583] = {.lex_state = 37, .external_lex_state = 10}, + [1584] = {.lex_state = 33, .external_lex_state = 12}, + [1585] = {.lex_state = 37, .external_lex_state = 10}, + [1586] = {.lex_state = 33, .external_lex_state = 12}, + [1587] = {.lex_state = 37, .external_lex_state = 10}, + [1588] = {.lex_state = 37, .external_lex_state = 10}, + [1589] = {.lex_state = 33, .external_lex_state = 11}, + [1590] = {.lex_state = 37, .external_lex_state = 10}, + [1591] = {.lex_state = 33, .external_lex_state = 11}, + [1592] = {.lex_state = 54, .external_lex_state = 10}, + [1593] = {.lex_state = 33, .external_lex_state = 13}, + [1594] = {.lex_state = 54, .external_lex_state = 10}, + [1595] = {.lex_state = 54, .external_lex_state = 10}, + [1596] = {.lex_state = 54, .external_lex_state = 10}, + [1597] = {.lex_state = 33, .external_lex_state = 13}, + [1598] = {.lex_state = 37, .external_lex_state = 11}, + [1599] = {.lex_state = 37, .external_lex_state = 11}, + [1600] = {.lex_state = 37, .external_lex_state = 11}, + [1601] = {.lex_state = 54, .external_lex_state = 11}, + [1602] = {.lex_state = 37, .external_lex_state = 11}, + [1603] = {.lex_state = 54, .external_lex_state = 13}, + [1604] = {.lex_state = 37, .external_lex_state = 11}, + [1605] = {.lex_state = 35, .external_lex_state = 9}, + [1606] = {.lex_state = 35, .external_lex_state = 9}, + [1607] = {.lex_state = 37, .external_lex_state = 11}, + [1608] = {.lex_state = 54, .external_lex_state = 13}, + [1609] = {.lex_state = 54, .external_lex_state = 11}, + [1610] = {.lex_state = 37, .external_lex_state = 11}, + [1611] = {.lex_state = 37, .external_lex_state = 13}, + [1612] = {.lex_state = 37, .external_lex_state = 12}, + [1613] = {.lex_state = 37, .external_lex_state = 12}, + [1614] = {.lex_state = 37, .external_lex_state = 12}, + [1615] = {.lex_state = 35, .external_lex_state = 9}, + [1616] = {.lex_state = 37, .external_lex_state = 12}, + [1617] = {.lex_state = 37, .external_lex_state = 12}, + [1618] = {.lex_state = 37, .external_lex_state = 12}, + [1619] = {.lex_state = 37, .external_lex_state = 12}, + [1620] = {.lex_state = 37, .external_lex_state = 11}, + [1621] = {.lex_state = 37, .external_lex_state = 13}, + [1622] = {.lex_state = 37, .external_lex_state = 12}, + [1623] = {.lex_state = 37, .external_lex_state = 12}, + [1624] = {.lex_state = 37, .external_lex_state = 12}, + [1625] = {.lex_state = 37, .external_lex_state = 12}, + [1626] = {.lex_state = 37, .external_lex_state = 12}, + [1627] = {.lex_state = 37, .external_lex_state = 12}, + [1628] = {.lex_state = 37, .external_lex_state = 13}, + [1629] = {.lex_state = 37, .external_lex_state = 12}, + [1630] = {.lex_state = 37, .external_lex_state = 13}, + [1631] = {.lex_state = 37, .external_lex_state = 12}, + [1632] = {.lex_state = 37, .external_lex_state = 11}, + [1633] = {.lex_state = 37, .external_lex_state = 12}, + [1634] = {.lex_state = 37, .external_lex_state = 12}, + [1635] = {.lex_state = 37, .external_lex_state = 12}, + [1636] = {.lex_state = 37, .external_lex_state = 12}, + [1637] = {.lex_state = 37, .external_lex_state = 12}, + [1638] = {.lex_state = 35, .external_lex_state = 9}, + [1639] = {.lex_state = 37, .external_lex_state = 12}, + [1640] = {.lex_state = 37, .external_lex_state = 13}, + [1641] = {.lex_state = 37, .external_lex_state = 11}, + [1642] = {.lex_state = 35, .external_lex_state = 9}, + [1643] = {.lex_state = 35, .external_lex_state = 9}, + [1644] = {.lex_state = 37, .external_lex_state = 11}, + [1645] = {.lex_state = 37, .external_lex_state = 13}, + [1646] = {.lex_state = 37, .external_lex_state = 11}, + [1647] = {.lex_state = 37, .external_lex_state = 12}, + [1648] = {.lex_state = 36, .external_lex_state = 12}, + [1649] = {.lex_state = 36, .external_lex_state = 12}, + [1650] = {.lex_state = 36, .external_lex_state = 12}, + [1651] = {.lex_state = 35, .external_lex_state = 12}, + [1652] = {.lex_state = 36, .external_lex_state = 12}, + [1653] = {.lex_state = 35, .external_lex_state = 12}, + [1654] = {.lex_state = 36, .external_lex_state = 12}, + [1655] = {.lex_state = 35, .external_lex_state = 9}, + [1656] = {.lex_state = 36, .external_lex_state = 12}, + [1657] = {.lex_state = 35, .external_lex_state = 12}, + [1658] = {.lex_state = 36, .external_lex_state = 12}, + [1659] = {.lex_state = 35, .external_lex_state = 12}, + [1660] = {.lex_state = 35, .external_lex_state = 12}, + [1661] = {.lex_state = 35, .external_lex_state = 12}, + [1662] = {.lex_state = 36, .external_lex_state = 12}, + [1663] = {.lex_state = 35, .external_lex_state = 12}, + [1664] = {.lex_state = 36, .external_lex_state = 12}, + [1665] = {.lex_state = 36, .external_lex_state = 12}, + [1666] = {.lex_state = 35, .external_lex_state = 12}, + [1667] = {.lex_state = 36, .external_lex_state = 12}, + [1668] = {.lex_state = 30, .external_lex_state = 11}, + [1669] = {.lex_state = 36, .external_lex_state = 12}, + [1670] = {.lex_state = 30, .external_lex_state = 11}, + [1671] = {.lex_state = 36, .external_lex_state = 12}, + [1672] = {.lex_state = 35, .external_lex_state = 12}, + [1673] = {.lex_state = 30, .external_lex_state = 11}, + [1674] = {.lex_state = 30, .external_lex_state = 12}, + [1675] = {.lex_state = 30, .external_lex_state = 12}, + [1676] = {.lex_state = 33, .external_lex_state = 9}, + [1677] = {.lex_state = 33, .external_lex_state = 9}, + [1678] = {.lex_state = 54, .external_lex_state = 10}, + [1679] = {.lex_state = 54, .external_lex_state = 10}, + [1680] = {.lex_state = 54, .external_lex_state = 10}, + [1681] = {.lex_state = 54, .external_lex_state = 10}, + [1682] = {.lex_state = 33, .external_lex_state = 9}, + [1683] = {.lex_state = 54, .external_lex_state = 10}, + [1684] = {.lex_state = 54, .external_lex_state = 10}, + [1685] = {.lex_state = 33, .external_lex_state = 9}, + [1686] = {.lex_state = 33, .external_lex_state = 9}, + [1687] = {.lex_state = 33, .external_lex_state = 9}, + [1688] = {.lex_state = 33, .external_lex_state = 9}, + [1689] = {.lex_state = 54, .external_lex_state = 10}, + [1690] = {.lex_state = 33, .external_lex_state = 9}, + [1691] = {.lex_state = 33, .external_lex_state = 9}, + [1692] = {.lex_state = 54, .external_lex_state = 10}, + [1693] = {.lex_state = 54, .external_lex_state = 11}, + [1694] = {.lex_state = 54, .external_lex_state = 13}, + [1695] = {.lex_state = 54, .external_lex_state = 11}, + [1696] = {.lex_state = 54, .external_lex_state = 11}, + [1697] = {.lex_state = 54, .external_lex_state = 11}, + [1698] = {.lex_state = 54, .external_lex_state = 11}, + [1699] = {.lex_state = 54, .external_lex_state = 11}, + [1700] = {.lex_state = 33, .external_lex_state = 9}, + [1701] = {.lex_state = 54, .external_lex_state = 11}, + [1702] = {.lex_state = 54, .external_lex_state = 13}, + [1703] = {.lex_state = 54, .external_lex_state = 13}, + [1704] = {.lex_state = 54, .external_lex_state = 13}, + [1705] = {.lex_state = 54, .external_lex_state = 11}, + [1706] = {.lex_state = 54, .external_lex_state = 13}, + [1707] = {.lex_state = 54, .external_lex_state = 11}, + [1708] = {.lex_state = 54, .external_lex_state = 11}, + [1709] = {.lex_state = 54, .external_lex_state = 11}, + [1710] = {.lex_state = 54, .external_lex_state = 13}, + [1711] = {.lex_state = 54, .external_lex_state = 11}, + [1712] = {.lex_state = 54, .external_lex_state = 13}, + [1713] = {.lex_state = 54, .external_lex_state = 11}, + [1714] = {.lex_state = 54, .external_lex_state = 11}, + [1715] = {.lex_state = 54, .external_lex_state = 13}, + [1716] = {.lex_state = 54, .external_lex_state = 11}, + [1717] = {.lex_state = 54, .external_lex_state = 11}, + [1718] = {.lex_state = 54, .external_lex_state = 11}, + [1719] = {.lex_state = 33, .external_lex_state = 11}, + [1720] = {.lex_state = 33, .external_lex_state = 11}, + [1721] = {.lex_state = 33, .external_lex_state = 11}, + [1722] = {.lex_state = 0, .external_lex_state = 14}, + [1723] = {.lex_state = 0, .external_lex_state = 14}, + [1724] = {.lex_state = 54, .external_lex_state = 10}, + [1725] = {.lex_state = 0, .external_lex_state = 14}, + [1726] = {.lex_state = 33, .external_lex_state = 11}, + [1727] = {.lex_state = 33, .external_lex_state = 11}, + [1728] = {.lex_state = 33, .external_lex_state = 12}, + [1729] = {.lex_state = 54, .external_lex_state = 10}, + [1730] = {.lex_state = 0, .external_lex_state = 14}, + [1731] = {.lex_state = 0, .external_lex_state = 14}, + [1732] = {.lex_state = 0, .external_lex_state = 14}, + [1733] = {.lex_state = 0, .external_lex_state = 14}, + [1734] = {.lex_state = 33, .external_lex_state = 11}, + [1735] = {.lex_state = 33, .external_lex_state = 11}, + [1736] = {.lex_state = 0, .external_lex_state = 14}, + [1737] = {.lex_state = 0, .external_lex_state = 14}, + [1738] = {.lex_state = 0, .external_lex_state = 14}, + [1739] = {.lex_state = 33, .external_lex_state = 11}, + [1740] = {.lex_state = 33, .external_lex_state = 11}, + [1741] = {.lex_state = 33, .external_lex_state = 12}, + [1742] = {.lex_state = 0, .external_lex_state = 14}, + [1743] = {.lex_state = 33, .external_lex_state = 12}, + [1744] = {.lex_state = 0, .external_lex_state = 14}, + [1745] = {.lex_state = 0, .external_lex_state = 14}, + [1746] = {.lex_state = 33, .external_lex_state = 12}, + [1747] = {.lex_state = 0, .external_lex_state = 14}, + [1748] = {.lex_state = 33, .external_lex_state = 12}, + [1749] = {.lex_state = 33, .external_lex_state = 12}, + [1750] = {.lex_state = 33, .external_lex_state = 12}, + [1751] = {.lex_state = 33, .external_lex_state = 12}, + [1752] = {.lex_state = 0, .external_lex_state = 14}, + [1753] = {.lex_state = 0, .external_lex_state = 14}, + [1754] = {.lex_state = 33, .external_lex_state = 9}, + [1755] = {.lex_state = 0, .external_lex_state = 14}, + [1756] = {.lex_state = 0, .external_lex_state = 14}, + [1757] = {.lex_state = 33, .external_lex_state = 12}, + [1758] = {.lex_state = 0, .external_lex_state = 14}, + [1759] = {.lex_state = 33, .external_lex_state = 11}, [1760] = {.lex_state = 54, .external_lex_state = 10}, - [1761] = {.lex_state = 54, .external_lex_state = 9}, - [1762] = {.lex_state = 54, .external_lex_state = 12}, - [1763] = {.lex_state = 54, .external_lex_state = 12}, - [1764] = {.lex_state = 54, .external_lex_state = 12}, - [1765] = {.lex_state = 54, .external_lex_state = 12}, - [1766] = {.lex_state = 54, .external_lex_state = 12}, - [1767] = {.lex_state = 54, .external_lex_state = 11}, - [1768] = {.lex_state = 54, .external_lex_state = 12}, - [1769] = {.lex_state = 54, .external_lex_state = 12}, - [1770] = {.lex_state = 54, .external_lex_state = 9}, + [1761] = {.lex_state = 33, .external_lex_state = 12}, + [1762] = {.lex_state = 33, .external_lex_state = 13}, + [1763] = {.lex_state = 33, .external_lex_state = 13}, + [1764] = {.lex_state = 54, .external_lex_state = 10}, + [1765] = {.lex_state = 33, .external_lex_state = 12}, + [1766] = {.lex_state = 33, .external_lex_state = 13}, + [1767] = {.lex_state = 54, .external_lex_state = 10}, + [1768] = {.lex_state = 33, .external_lex_state = 13}, + [1769] = {.lex_state = 33, .external_lex_state = 13}, + [1770] = {.lex_state = 54, .external_lex_state = 10}, [1771] = {.lex_state = 54, .external_lex_state = 10}, - [1772] = {.lex_state = 54, .external_lex_state = 12}, - [1773] = {.lex_state = 54, .external_lex_state = 11}, - [1774] = {.lex_state = 54, .external_lex_state = 13}, - [1775] = {.lex_state = 54, .external_lex_state = 12}, - [1776] = {.lex_state = 54, .external_lex_state = 12}, - [1777] = {.lex_state = 54, .external_lex_state = 12}, - [1778] = {.lex_state = 54, .external_lex_state = 12}, - [1779] = {.lex_state = 54, .external_lex_state = 12}, - [1780] = {.lex_state = 54, .external_lex_state = 9}, - [1781] = {.lex_state = 54, .external_lex_state = 12}, - [1782] = {.lex_state = 35, .external_lex_state = 13}, + [1772] = {.lex_state = 54, .external_lex_state = 10}, + [1773] = {.lex_state = 54, .external_lex_state = 10}, + [1774] = {.lex_state = 33, .external_lex_state = 13}, + [1775] = {.lex_state = 33, .external_lex_state = 13}, + [1776] = {.lex_state = 33, .external_lex_state = 12}, + [1777] = {.lex_state = 33, .external_lex_state = 12}, + [1778] = {.lex_state = 33, .external_lex_state = 13}, + [1779] = {.lex_state = 54, .external_lex_state = 10}, + [1780] = {.lex_state = 33, .external_lex_state = 12}, + [1781] = {.lex_state = 33, .external_lex_state = 13}, + [1782] = {.lex_state = 54, .external_lex_state = 10}, [1783] = {.lex_state = 54, .external_lex_state = 10}, [1784] = {.lex_state = 54, .external_lex_state = 10}, - [1785] = {.lex_state = 54, .external_lex_state = 12}, + [1785] = {.lex_state = 54, .external_lex_state = 10}, [1786] = {.lex_state = 54, .external_lex_state = 10}, - [1787] = {.lex_state = 54, .external_lex_state = 10}, - [1788] = {.lex_state = 54, .external_lex_state = 11}, + [1787] = {.lex_state = 33, .external_lex_state = 13}, + [1788] = {.lex_state = 54, .external_lex_state = 9}, [1789] = {.lex_state = 54, .external_lex_state = 10}, [1790] = {.lex_state = 54, .external_lex_state = 10}, - [1791] = {.lex_state = 54, .external_lex_state = 11}, + [1791] = {.lex_state = 54, .external_lex_state = 10}, [1792] = {.lex_state = 54, .external_lex_state = 10}, - [1793] = {.lex_state = 54, .external_lex_state = 13}, - [1794] = {.lex_state = 54, .external_lex_state = 9}, - [1795] = {.lex_state = 54, .external_lex_state = 9}, - [1796] = {.lex_state = 54, .external_lex_state = 10}, - [1797] = {.lex_state = 54, .external_lex_state = 11}, - [1798] = {.lex_state = 0, .external_lex_state = 14}, - [1799] = {.lex_state = 54, .external_lex_state = 11}, - [1800] = {.lex_state = 54, .external_lex_state = 10}, - [1801] = {.lex_state = 54, .external_lex_state = 11}, + [1793] = {.lex_state = 54, .external_lex_state = 10}, + [1794] = {.lex_state = 54, .external_lex_state = 10}, + [1795] = {.lex_state = 54, .external_lex_state = 10}, + [1796] = {.lex_state = 32, .external_lex_state = 13}, + [1797] = {.lex_state = 54, .external_lex_state = 9}, + [1798] = {.lex_state = 54, .external_lex_state = 10}, + [1799] = {.lex_state = 32, .external_lex_state = 10}, + [1800] = {.lex_state = 54, .external_lex_state = 13}, + [1801] = {.lex_state = 54, .external_lex_state = 13}, [1802] = {.lex_state = 54, .external_lex_state = 13}, - [1803] = {.lex_state = 54, .external_lex_state = 13}, - [1804] = {.lex_state = 54, .external_lex_state = 12}, - [1805] = {.lex_state = 0, .external_lex_state = 14}, - [1806] = {.lex_state = 54, .external_lex_state = 10}, - [1807] = {.lex_state = 54, .external_lex_state = 12}, - [1808] = {.lex_state = 54, .external_lex_state = 12}, - [1809] = {.lex_state = 54, .external_lex_state = 11}, - [1810] = {.lex_state = 54, .external_lex_state = 13}, - [1811] = {.lex_state = 54, .external_lex_state = 12}, + [1803] = {.lex_state = 32, .external_lex_state = 11}, + [1804] = {.lex_state = 54, .external_lex_state = 11}, + [1805] = {.lex_state = 54, .external_lex_state = 13}, + [1806] = {.lex_state = 54, .external_lex_state = 11}, + [1807] = {.lex_state = 54, .external_lex_state = 11}, + [1808] = {.lex_state = 54, .external_lex_state = 2}, + [1809] = {.lex_state = 54, .external_lex_state = 13}, + [1810] = {.lex_state = 54, .external_lex_state = 9}, + [1811] = {.lex_state = 54, .external_lex_state = 13}, [1812] = {.lex_state = 54, .external_lex_state = 13}, - [1813] = {.lex_state = 54, .external_lex_state = 10}, - [1814] = {.lex_state = 32, .external_lex_state = 13}, - [1815] = {.lex_state = 54, .external_lex_state = 12}, - [1816] = {.lex_state = 54, .external_lex_state = 13}, + [1813] = {.lex_state = 54, .external_lex_state = 9}, + [1814] = {.lex_state = 54, .external_lex_state = 13}, + [1815] = {.lex_state = 33, .external_lex_state = 12}, + [1816] = {.lex_state = 54, .external_lex_state = 12}, [1817] = {.lex_state = 54, .external_lex_state = 13}, - [1818] = {.lex_state = 54, .external_lex_state = 12}, - [1819] = {.lex_state = 54, .external_lex_state = 12}, - [1820] = {.lex_state = 54, .external_lex_state = 10}, - [1821] = {.lex_state = 33, .external_lex_state = 9}, - [1822] = {.lex_state = 33, .external_lex_state = 11}, - [1823] = {.lex_state = 0, .external_lex_state = 14}, - [1824] = {.lex_state = 33, .external_lex_state = 11}, - [1825] = {.lex_state = 33, .external_lex_state = 11}, - [1826] = {.lex_state = 54, .external_lex_state = 13}, - [1827] = {.lex_state = 33, .external_lex_state = 11}, - [1828] = {.lex_state = 54, .external_lex_state = 12}, - [1829] = {.lex_state = 54, .external_lex_state = 12}, - [1830] = {.lex_state = 54, .external_lex_state = 11}, - [1831] = {.lex_state = 33, .external_lex_state = 11}, - [1832] = {.lex_state = 54, .external_lex_state = 11}, - [1833] = {.lex_state = 33, .external_lex_state = 11}, - [1834] = {.lex_state = 54, .external_lex_state = 9}, - [1835] = {.lex_state = 54, .external_lex_state = 11}, + [1818] = {.lex_state = 54, .external_lex_state = 13}, + [1819] = {.lex_state = 54, .external_lex_state = 13}, + [1820] = {.lex_state = 34, .external_lex_state = 12}, + [1821] = {.lex_state = 54, .external_lex_state = 12}, + [1822] = {.lex_state = 54, .external_lex_state = 11}, + [1823] = {.lex_state = 34, .external_lex_state = 12}, + [1824] = {.lex_state = 54, .external_lex_state = 13}, + [1825] = {.lex_state = 54, .external_lex_state = 13}, + [1826] = {.lex_state = 54, .external_lex_state = 11}, + [1827] = {.lex_state = 54, .external_lex_state = 13}, + [1828] = {.lex_state = 54, .external_lex_state = 9}, + [1829] = {.lex_state = 54, .external_lex_state = 13}, + [1830] = {.lex_state = 54, .external_lex_state = 9}, + [1831] = {.lex_state = 54, .external_lex_state = 9}, + [1832] = {.lex_state = 54, .external_lex_state = 13}, + [1833] = {.lex_state = 54, .external_lex_state = 13}, + [1834] = {.lex_state = 54, .external_lex_state = 13}, + [1835] = {.lex_state = 54, .external_lex_state = 9}, [1836] = {.lex_state = 54, .external_lex_state = 10}, [1837] = {.lex_state = 54, .external_lex_state = 11}, - [1838] = {.lex_state = 54, .external_lex_state = 10}, - [1839] = {.lex_state = 54, .external_lex_state = 12}, - [1840] = {.lex_state = 33, .external_lex_state = 9}, - [1841] = {.lex_state = 54, .external_lex_state = 12}, - [1842] = {.lex_state = 54, .external_lex_state = 13}, - [1843] = {.lex_state = 54, .external_lex_state = 10}, - [1844] = {.lex_state = 54, .external_lex_state = 12}, - [1845] = {.lex_state = 33, .external_lex_state = 9}, - [1846] = {.lex_state = 54, .external_lex_state = 11}, - [1847] = {.lex_state = 33, .external_lex_state = 9}, - [1848] = {.lex_state = 33, .external_lex_state = 11}, + [1838] = {.lex_state = 54, .external_lex_state = 11}, + [1839] = {.lex_state = 54, .external_lex_state = 9}, + [1840] = {.lex_state = 34, .external_lex_state = 12}, + [1841] = {.lex_state = 54, .external_lex_state = 10}, + [1842] = {.lex_state = 34, .external_lex_state = 12}, + [1843] = {.lex_state = 54, .external_lex_state = 13}, + [1844] = {.lex_state = 54, .external_lex_state = 11}, + [1845] = {.lex_state = 54, .external_lex_state = 13}, + [1846] = {.lex_state = 54, .external_lex_state = 13}, + [1847] = {.lex_state = 54, .external_lex_state = 11}, + [1848] = {.lex_state = 54, .external_lex_state = 9}, [1849] = {.lex_state = 54, .external_lex_state = 11}, - [1850] = {.lex_state = 54, .external_lex_state = 10}, - [1851] = {.lex_state = 54, .external_lex_state = 10}, - [1852] = {.lex_state = 54, .external_lex_state = 12}, - [1853] = {.lex_state = 54, .external_lex_state = 12}, - [1854] = {.lex_state = 33, .external_lex_state = 12}, + [1850] = {.lex_state = 54, .external_lex_state = 11}, + [1851] = {.lex_state = 54, .external_lex_state = 11}, + [1852] = {.lex_state = 54, .external_lex_state = 13}, + [1853] = {.lex_state = 54, .external_lex_state = 10}, + [1854] = {.lex_state = 54, .external_lex_state = 10}, [1855] = {.lex_state = 54, .external_lex_state = 11}, - [1856] = {.lex_state = 54, .external_lex_state = 13}, - [1857] = {.lex_state = 54, .external_lex_state = 11}, + [1856] = {.lex_state = 54, .external_lex_state = 11}, + [1857] = {.lex_state = 54, .external_lex_state = 13}, [1858] = {.lex_state = 54, .external_lex_state = 10}, - [1859] = {.lex_state = 32, .external_lex_state = 9}, - [1860] = {.lex_state = 54, .external_lex_state = 13}, - [1861] = {.lex_state = 33, .external_lex_state = 13}, - [1862] = {.lex_state = 33, .external_lex_state = 12}, - [1863] = {.lex_state = 54, .external_lex_state = 11}, - [1864] = {.lex_state = 54, .external_lex_state = 13}, + [1859] = {.lex_state = 32, .external_lex_state = 11}, + [1860] = {.lex_state = 54, .external_lex_state = 9}, + [1861] = {.lex_state = 32, .external_lex_state = 11}, + [1862] = {.lex_state = 54, .external_lex_state = 10}, + [1863] = {.lex_state = 0, .external_lex_state = 14}, + [1864] = {.lex_state = 32, .external_lex_state = 11}, [1865] = {.lex_state = 54, .external_lex_state = 10}, [1866] = {.lex_state = 54, .external_lex_state = 12}, - [1867] = {.lex_state = 54, .external_lex_state = 11}, + [1867] = {.lex_state = 54, .external_lex_state = 7}, [1868] = {.lex_state = 54, .external_lex_state = 13}, - [1869] = {.lex_state = 33, .external_lex_state = 9}, - [1870] = {.lex_state = 54, .external_lex_state = 13}, + [1869] = {.lex_state = 32, .external_lex_state = 13}, + [1870] = {.lex_state = 32, .external_lex_state = 10}, [1871] = {.lex_state = 54, .external_lex_state = 12}, [1872] = {.lex_state = 54, .external_lex_state = 10}, [1873] = {.lex_state = 54, .external_lex_state = 12}, - [1874] = {.lex_state = 33, .external_lex_state = 11}, - [1875] = {.lex_state = 54, .external_lex_state = 13}, - [1876] = {.lex_state = 54, .external_lex_state = 12}, - [1877] = {.lex_state = 33, .external_lex_state = 9}, - [1878] = {.lex_state = 54, .external_lex_state = 11}, - [1879] = {.lex_state = 54, .external_lex_state = 11}, - [1880] = {.lex_state = 54, .external_lex_state = 11}, - [1881] = {.lex_state = 0, .external_lex_state = 14}, - [1882] = {.lex_state = 32, .external_lex_state = 9}, - [1883] = {.lex_state = 32, .external_lex_state = 9}, - [1884] = {.lex_state = 54, .external_lex_state = 9}, - [1885] = {.lex_state = 54, .external_lex_state = 11}, - [1886] = {.lex_state = 54, .external_lex_state = 10}, + [1874] = {.lex_state = 54, .external_lex_state = 11}, + [1875] = {.lex_state = 32, .external_lex_state = 12}, + [1876] = {.lex_state = 54, .external_lex_state = 13}, + [1877] = {.lex_state = 54, .external_lex_state = 13}, + [1878] = {.lex_state = 32, .external_lex_state = 10}, + [1879] = {.lex_state = 54, .external_lex_state = 13}, + [1880] = {.lex_state = 54, .external_lex_state = 10}, + [1881] = {.lex_state = 54, .external_lex_state = 13}, + [1882] = {.lex_state = 54, .external_lex_state = 13}, + [1883] = {.lex_state = 32, .external_lex_state = 13}, + [1884] = {.lex_state = 54, .external_lex_state = 12}, + [1885] = {.lex_state = 54, .external_lex_state = 12}, + [1886] = {.lex_state = 54, .external_lex_state = 12}, [1887] = {.lex_state = 54, .external_lex_state = 10}, - [1888] = {.lex_state = 0, .external_lex_state = 14}, - [1889] = {.lex_state = 33, .external_lex_state = 13}, - [1890] = {.lex_state = 54, .external_lex_state = 9}, - [1891] = {.lex_state = 54, .external_lex_state = 13}, - [1892] = {.lex_state = 33, .external_lex_state = 9}, - [1893] = {.lex_state = 0, .external_lex_state = 14}, - [1894] = {.lex_state = 0, .external_lex_state = 14}, - [1895] = {.lex_state = 33, .external_lex_state = 12}, - [1896] = {.lex_state = 54, .external_lex_state = 10}, - [1897] = {.lex_state = 33, .external_lex_state = 11}, - [1898] = {.lex_state = 0, .external_lex_state = 14}, - [1899] = {.lex_state = 54, .external_lex_state = 13}, + [1888] = {.lex_state = 54, .external_lex_state = 12}, + [1889] = {.lex_state = 54, .external_lex_state = 12}, + [1890] = {.lex_state = 54, .external_lex_state = 11}, + [1891] = {.lex_state = 54, .external_lex_state = 10}, + [1892] = {.lex_state = 54, .external_lex_state = 10}, + [1893] = {.lex_state = 54, .external_lex_state = 11}, + [1894] = {.lex_state = 54, .external_lex_state = 10}, + [1895] = {.lex_state = 54, .external_lex_state = 6}, + [1896] = {.lex_state = 0, .external_lex_state = 14}, + [1897] = {.lex_state = 54, .external_lex_state = 9}, + [1898] = {.lex_state = 54, .external_lex_state = 13}, + [1899] = {.lex_state = 54, .external_lex_state = 12}, [1900] = {.lex_state = 54, .external_lex_state = 10}, - [1901] = {.lex_state = 54, .external_lex_state = 13}, - [1902] = {.lex_state = 54, .external_lex_state = 11}, - [1903] = {.lex_state = 54, .external_lex_state = 10}, - [1904] = {.lex_state = 33, .external_lex_state = 12}, - [1905] = {.lex_state = 0, .external_lex_state = 14}, + [1901] = {.lex_state = 54, .external_lex_state = 11}, + [1902] = {.lex_state = 32, .external_lex_state = 10}, + [1903] = {.lex_state = 54, .external_lex_state = 8}, + [1904] = {.lex_state = 32, .external_lex_state = 13}, + [1905] = {.lex_state = 54, .external_lex_state = 10}, [1906] = {.lex_state = 54, .external_lex_state = 11}, - [1907] = {.lex_state = 0, .external_lex_state = 14}, + [1907] = {.lex_state = 33, .external_lex_state = 12}, [1908] = {.lex_state = 54, .external_lex_state = 12}, - [1909] = {.lex_state = 33, .external_lex_state = 9}, - [1910] = {.lex_state = 33, .external_lex_state = 9}, - [1911] = {.lex_state = 54, .external_lex_state = 12}, - [1912] = {.lex_state = 54, .external_lex_state = 10}, - [1913] = {.lex_state = 3, .external_lex_state = 10}, - [1914] = {.lex_state = 54, .external_lex_state = 9}, - [1915] = {.lex_state = 32, .external_lex_state = 9}, - [1916] = {.lex_state = 54, .external_lex_state = 13}, - [1917] = {.lex_state = 54, .external_lex_state = 9}, - [1918] = {.lex_state = 33, .external_lex_state = 12}, - [1919] = {.lex_state = 54, .external_lex_state = 9}, - [1920] = {.lex_state = 54, .external_lex_state = 11}, - [1921] = {.lex_state = 33, .external_lex_state = 11}, - [1922] = {.lex_state = 54, .external_lex_state = 11}, - [1923] = {.lex_state = 54, .external_lex_state = 13}, - [1924] = {.lex_state = 54, .external_lex_state = 13}, - [1925] = {.lex_state = 54, .external_lex_state = 13}, - [1926] = {.lex_state = 54, .external_lex_state = 9}, - [1927] = {.lex_state = 54, .external_lex_state = 13}, - [1928] = {.lex_state = 54, .external_lex_state = 11}, - [1929] = {.lex_state = 54, .external_lex_state = 13}, - [1930] = {.lex_state = 54, .external_lex_state = 13}, + [1909] = {.lex_state = 54, .external_lex_state = 12}, + [1910] = {.lex_state = 54, .external_lex_state = 11}, + [1911] = {.lex_state = 54, .external_lex_state = 13}, + [1912] = {.lex_state = 54, .external_lex_state = 11}, + [1913] = {.lex_state = 54, .external_lex_state = 13}, + [1914] = {.lex_state = 54, .external_lex_state = 10}, + [1915] = {.lex_state = 33, .external_lex_state = 12}, + [1916] = {.lex_state = 32, .external_lex_state = 9}, + [1917] = {.lex_state = 33, .external_lex_state = 13}, + [1918] = {.lex_state = 54, .external_lex_state = 13}, + [1919] = {.lex_state = 54, .external_lex_state = 12}, + [1920] = {.lex_state = 33, .external_lex_state = 9}, + [1921] = {.lex_state = 33, .external_lex_state = 13}, + [1922] = {.lex_state = 54, .external_lex_state = 9}, + [1923] = {.lex_state = 33, .external_lex_state = 9}, + [1924] = {.lex_state = 33, .external_lex_state = 9}, + [1925] = {.lex_state = 54, .external_lex_state = 10}, + [1926] = {.lex_state = 54, .external_lex_state = 12}, + [1927] = {.lex_state = 33, .external_lex_state = 11}, + [1928] = {.lex_state = 54, .external_lex_state = 12}, + [1929] = {.lex_state = 54, .external_lex_state = 11}, + [1930] = {.lex_state = 54, .external_lex_state = 10}, [1931] = {.lex_state = 54, .external_lex_state = 13}, - [1932] = {.lex_state = 54, .external_lex_state = 13}, - [1933] = {.lex_state = 32, .external_lex_state = 11}, - [1934] = {.lex_state = 54, .external_lex_state = 13}, - [1935] = {.lex_state = 54, .external_lex_state = 13}, - [1936] = {.lex_state = 54, .external_lex_state = 10}, - [1937] = {.lex_state = 54, .external_lex_state = 13}, - [1938] = {.lex_state = 54, .external_lex_state = 13}, - [1939] = {.lex_state = 32, .external_lex_state = 11}, - [1940] = {.lex_state = 54, .external_lex_state = 13}, - [1941] = {.lex_state = 54, .external_lex_state = 13}, - [1942] = {.lex_state = 33, .external_lex_state = 12}, - [1943] = {.lex_state = 33, .external_lex_state = 12}, - [1944] = {.lex_state = 54, .external_lex_state = 13}, - [1945] = {.lex_state = 54, .external_lex_state = 13}, - [1946] = {.lex_state = 54, .external_lex_state = 13}, - [1947] = {.lex_state = 33, .external_lex_state = 13}, - [1948] = {.lex_state = 33, .external_lex_state = 13}, + [1932] = {.lex_state = 54, .external_lex_state = 10}, + [1933] = {.lex_state = 54, .external_lex_state = 11}, + [1934] = {.lex_state = 54, .external_lex_state = 10}, + [1935] = {.lex_state = 54, .external_lex_state = 11}, + [1936] = {.lex_state = 32, .external_lex_state = 9}, + [1937] = {.lex_state = 54, .external_lex_state = 12}, + [1938] = {.lex_state = 54, .external_lex_state = 11}, + [1939] = {.lex_state = 54, .external_lex_state = 13}, + [1940] = {.lex_state = 33, .external_lex_state = 13}, + [1941] = {.lex_state = 54, .external_lex_state = 11}, + [1942] = {.lex_state = 54, .external_lex_state = 10}, + [1943] = {.lex_state = 54, .external_lex_state = 11}, + [1944] = {.lex_state = 0, .external_lex_state = 14}, + [1945] = {.lex_state = 54, .external_lex_state = 11}, + [1946] = {.lex_state = 54, .external_lex_state = 10}, + [1947] = {.lex_state = 54, .external_lex_state = 11}, + [1948] = {.lex_state = 0, .external_lex_state = 14}, [1949] = {.lex_state = 54, .external_lex_state = 13}, - [1950] = {.lex_state = 33, .external_lex_state = 13}, + [1950] = {.lex_state = 0, .external_lex_state = 14}, [1951] = {.lex_state = 54, .external_lex_state = 13}, - [1952] = {.lex_state = 33, .external_lex_state = 12}, - [1953] = {.lex_state = 33, .external_lex_state = 12}, + [1952] = {.lex_state = 54, .external_lex_state = 13}, + [1953] = {.lex_state = 54, .external_lex_state = 12}, [1954] = {.lex_state = 54, .external_lex_state = 13}, - [1955] = {.lex_state = 54, .external_lex_state = 12}, - [1956] = {.lex_state = 3, .external_lex_state = 10}, - [1957] = {.lex_state = 33, .external_lex_state = 13}, - [1958] = {.lex_state = 54, .external_lex_state = 10}, - [1959] = {.lex_state = 54, .external_lex_state = 10}, + [1955] = {.lex_state = 54, .external_lex_state = 10}, + [1956] = {.lex_state = 33, .external_lex_state = 13}, + [1957] = {.lex_state = 54, .external_lex_state = 13}, + [1958] = {.lex_state = 54, .external_lex_state = 13}, + [1959] = {.lex_state = 32, .external_lex_state = 10}, [1960] = {.lex_state = 54, .external_lex_state = 10}, - [1961] = {.lex_state = 54, .external_lex_state = 13}, - [1962] = {.lex_state = 3, .external_lex_state = 10}, - [1963] = {.lex_state = 33, .external_lex_state = 13}, - [1964] = {.lex_state = 32, .external_lex_state = 11}, - [1965] = {.lex_state = 54, .external_lex_state = 9}, - [1966] = {.lex_state = 54, .external_lex_state = 9}, - [1967] = {.lex_state = 54, .external_lex_state = 10}, - [1968] = {.lex_state = 54, .external_lex_state = 13}, + [1961] = {.lex_state = 54, .external_lex_state = 12}, + [1962] = {.lex_state = 32, .external_lex_state = 9}, + [1963] = {.lex_state = 54, .external_lex_state = 11}, + [1964] = {.lex_state = 54, .external_lex_state = 10}, + [1965] = {.lex_state = 54, .external_lex_state = 13}, + [1966] = {.lex_state = 54, .external_lex_state = 11}, + [1967] = {.lex_state = 54, .external_lex_state = 9}, + [1968] = {.lex_state = 0, .external_lex_state = 14}, [1969] = {.lex_state = 33, .external_lex_state = 9}, - [1970] = {.lex_state = 33, .external_lex_state = 13}, - [1971] = {.lex_state = 33, .external_lex_state = 12}, - [1972] = {.lex_state = 33, .external_lex_state = 13}, - [1973] = {.lex_state = 54, .external_lex_state = 10}, - [1974] = {.lex_state = 54, .external_lex_state = 10}, - [1975] = {.lex_state = 54, .external_lex_state = 9}, + [1970] = {.lex_state = 54, .external_lex_state = 10}, + [1971] = {.lex_state = 33, .external_lex_state = 9}, + [1972] = {.lex_state = 33, .external_lex_state = 11}, + [1973] = {.lex_state = 32, .external_lex_state = 13}, + [1974] = {.lex_state = 54, .external_lex_state = 12}, + [1975] = {.lex_state = 54, .external_lex_state = 12}, [1976] = {.lex_state = 54, .external_lex_state = 12}, - [1977] = {.lex_state = 54, .external_lex_state = 10}, - [1978] = {.lex_state = 54, .external_lex_state = 10}, - [1979] = {.lex_state = 54, .external_lex_state = 13}, - [1980] = {.lex_state = 33, .external_lex_state = 12}, - [1981] = {.lex_state = 54, .external_lex_state = 13}, - [1982] = {.lex_state = 33, .external_lex_state = 12}, - [1983] = {.lex_state = 33, .external_lex_state = 12}, - [1984] = {.lex_state = 54, .external_lex_state = 9}, - [1985] = {.lex_state = 54, .external_lex_state = 11}, - [1986] = {.lex_state = 32, .external_lex_state = 13}, - [1987] = {.lex_state = 54, .external_lex_state = 9}, - [1988] = {.lex_state = 54, .external_lex_state = 9}, - [1989] = {.lex_state = 54, .external_lex_state = 9}, - [1990] = {.lex_state = 54, .external_lex_state = 15}, - [1991] = {.lex_state = 54, .external_lex_state = 9}, - [1992] = {.lex_state = 54, .external_lex_state = 9}, - [1993] = {.lex_state = 54, .external_lex_state = 9}, - [1994] = {.lex_state = 54, .external_lex_state = 9}, - [1995] = {.lex_state = 54, .external_lex_state = 15}, + [1977] = {.lex_state = 54, .external_lex_state = 11}, + [1978] = {.lex_state = 54, .external_lex_state = 11}, + [1979] = {.lex_state = 33, .external_lex_state = 9}, + [1980] = {.lex_state = 33, .external_lex_state = 11}, + [1981] = {.lex_state = 54, .external_lex_state = 12}, + [1982] = {.lex_state = 54, .external_lex_state = 12}, + [1983] = {.lex_state = 54, .external_lex_state = 12}, + [1984] = {.lex_state = 33, .external_lex_state = 9}, + [1985] = {.lex_state = 54, .external_lex_state = 13}, + [1986] = {.lex_state = 33, .external_lex_state = 11}, + [1987] = {.lex_state = 0, .external_lex_state = 14}, + [1988] = {.lex_state = 54, .external_lex_state = 13}, + [1989] = {.lex_state = 33, .external_lex_state = 11}, + [1990] = {.lex_state = 33, .external_lex_state = 11}, + [1991] = {.lex_state = 0, .external_lex_state = 14}, + [1992] = {.lex_state = 54, .external_lex_state = 12}, + [1993] = {.lex_state = 0, .external_lex_state = 14}, + [1994] = {.lex_state = 0, .external_lex_state = 14}, + [1995] = {.lex_state = 54, .external_lex_state = 9}, [1996] = {.lex_state = 54, .external_lex_state = 11}, - [1997] = {.lex_state = 54, .external_lex_state = 9}, - [1998] = {.lex_state = 32, .external_lex_state = 11}, - [1999] = {.lex_state = 54, .external_lex_state = 9}, - [2000] = {.lex_state = 54, .external_lex_state = 13}, - [2001] = {.lex_state = 54, .external_lex_state = 15}, - [2002] = {.lex_state = 54, .external_lex_state = 9}, - [2003] = {.lex_state = 33, .external_lex_state = 13}, - [2004] = {.lex_state = 33, .external_lex_state = 13}, - [2005] = {.lex_state = 54, .external_lex_state = 15}, - [2006] = {.lex_state = 54, .external_lex_state = 9}, - [2007] = {.lex_state = 54, .external_lex_state = 13}, - [2008] = {.lex_state = 54, .external_lex_state = 11}, - [2009] = {.lex_state = 54, .external_lex_state = 9}, - [2010] = {.lex_state = 54, .external_lex_state = 13}, - [2011] = {.lex_state = 54, .external_lex_state = 10}, - [2012] = {.lex_state = 54, .external_lex_state = 11}, - [2013] = {.lex_state = 54, .external_lex_state = 13}, - [2014] = {.lex_state = 54, .external_lex_state = 15}, - [2015] = {.lex_state = 54, .external_lex_state = 13}, - [2016] = {.lex_state = 54, .external_lex_state = 9}, - [2017] = {.lex_state = 54, .external_lex_state = 13}, - [2018] = {.lex_state = 54, .external_lex_state = 9}, - [2019] = {.lex_state = 54, .external_lex_state = 11}, - [2020] = {.lex_state = 54, .external_lex_state = 9}, - [2021] = {.lex_state = 32, .external_lex_state = 13}, - [2022] = {.lex_state = 54, .external_lex_state = 9}, - [2023] = {.lex_state = 54, .external_lex_state = 13}, - [2024] = {.lex_state = 54, .external_lex_state = 13}, + [1997] = {.lex_state = 32, .external_lex_state = 11}, + [1998] = {.lex_state = 54, .external_lex_state = 12}, + [1999] = {.lex_state = 54, .external_lex_state = 11}, + [2000] = {.lex_state = 54, .external_lex_state = 11}, + [2001] = {.lex_state = 54, .external_lex_state = 10}, + [2002] = {.lex_state = 33, .external_lex_state = 9}, + [2003] = {.lex_state = 33, .external_lex_state = 11}, + [2004] = {.lex_state = 54, .external_lex_state = 10}, + [2005] = {.lex_state = 33, .external_lex_state = 9}, + [2006] = {.lex_state = 33, .external_lex_state = 11}, + [2007] = {.lex_state = 54, .external_lex_state = 10}, + [2008] = {.lex_state = 54, .external_lex_state = 10}, + [2009] = {.lex_state = 33, .external_lex_state = 11}, + [2010] = {.lex_state = 54, .external_lex_state = 10}, + [2011] = {.lex_state = 33, .external_lex_state = 13}, + [2012] = {.lex_state = 54, .external_lex_state = 13}, + [2013] = {.lex_state = 54, .external_lex_state = 9}, + [2014] = {.lex_state = 54, .external_lex_state = 12}, + [2015] = {.lex_state = 54, .external_lex_state = 9}, + [2016] = {.lex_state = 54, .external_lex_state = 10}, + [2017] = {.lex_state = 33, .external_lex_state = 13}, + [2018] = {.lex_state = 54, .external_lex_state = 10}, + [2019] = {.lex_state = 33, .external_lex_state = 13}, + [2020] = {.lex_state = 54, .external_lex_state = 10}, + [2021] = {.lex_state = 54, .external_lex_state = 9}, + [2022] = {.lex_state = 54, .external_lex_state = 12}, + [2023] = {.lex_state = 54, .external_lex_state = 10}, + [2024] = {.lex_state = 54, .external_lex_state = 10}, [2025] = {.lex_state = 54, .external_lex_state = 10}, - [2026] = {.lex_state = 54, .external_lex_state = 13}, - [2027] = {.lex_state = 54, .external_lex_state = 11}, + [2026] = {.lex_state = 54, .external_lex_state = 10}, + [2027] = {.lex_state = 54, .external_lex_state = 12}, [2028] = {.lex_state = 54, .external_lex_state = 10}, [2029] = {.lex_state = 54, .external_lex_state = 12}, - [2030] = {.lex_state = 32, .external_lex_state = 13}, - [2031] = {.lex_state = 54, .external_lex_state = 16}, + [2030] = {.lex_state = 3, .external_lex_state = 10}, + [2031] = {.lex_state = 32, .external_lex_state = 9}, [2032] = {.lex_state = 54, .external_lex_state = 13}, - [2033] = {.lex_state = 54, .external_lex_state = 13}, - [2034] = {.lex_state = 54, .external_lex_state = 9}, - [2035] = {.lex_state = 54, .external_lex_state = 9}, - [2036] = {.lex_state = 54, .external_lex_state = 9}, - [2037] = {.lex_state = 54, .external_lex_state = 13}, - [2038] = {.lex_state = 54, .external_lex_state = 12}, + [2033] = {.lex_state = 54, .external_lex_state = 12}, + [2034] = {.lex_state = 54, .external_lex_state = 12}, + [2035] = {.lex_state = 54, .external_lex_state = 12}, + [2036] = {.lex_state = 54, .external_lex_state = 12}, + [2037] = {.lex_state = 54, .external_lex_state = 11}, + [2038] = {.lex_state = 54, .external_lex_state = 11}, [2039] = {.lex_state = 54, .external_lex_state = 12}, - [2040] = {.lex_state = 54, .external_lex_state = 11}, - [2041] = {.lex_state = 54, .external_lex_state = 13}, - [2042] = {.lex_state = 54, .external_lex_state = 11}, + [2040] = {.lex_state = 54, .external_lex_state = 12}, + [2041] = {.lex_state = 54, .external_lex_state = 12}, + [2042] = {.lex_state = 33, .external_lex_state = 13}, [2043] = {.lex_state = 54, .external_lex_state = 11}, - [2044] = {.lex_state = 54, .external_lex_state = 16}, - [2045] = {.lex_state = 54, .external_lex_state = 13}, - [2046] = {.lex_state = 54, .external_lex_state = 12}, - [2047] = {.lex_state = 54, .external_lex_state = 13}, - [2048] = {.lex_state = 54, .external_lex_state = 16}, + [2044] = {.lex_state = 54, .external_lex_state = 10}, + [2045] = {.lex_state = 54, .external_lex_state = 10}, + [2046] = {.lex_state = 33, .external_lex_state = 13}, + [2047] = {.lex_state = 54, .external_lex_state = 9}, + [2048] = {.lex_state = 33, .external_lex_state = 13}, [2049] = {.lex_state = 3, .external_lex_state = 10}, - [2050] = {.lex_state = 3, .external_lex_state = 10}, - [2051] = {.lex_state = 54, .external_lex_state = 10}, - [2052] = {.lex_state = 54, .external_lex_state = 13}, + [2050] = {.lex_state = 54, .external_lex_state = 10}, + [2051] = {.lex_state = 54, .external_lex_state = 12}, + [2052] = {.lex_state = 54, .external_lex_state = 10}, [2053] = {.lex_state = 54, .external_lex_state = 11}, - [2054] = {.lex_state = 3, .external_lex_state = 10}, - [2055] = {.lex_state = 54, .external_lex_state = 9}, - [2056] = {.lex_state = 54, .external_lex_state = 11}, - [2057] = {.lex_state = 54, .external_lex_state = 13}, - [2058] = {.lex_state = 54, .external_lex_state = 13}, + [2054] = {.lex_state = 54, .external_lex_state = 13}, + [2055] = {.lex_state = 33, .external_lex_state = 13}, + [2056] = {.lex_state = 54, .external_lex_state = 9}, + [2057] = {.lex_state = 54, .external_lex_state = 12}, + [2058] = {.lex_state = 54, .external_lex_state = 12}, [2059] = {.lex_state = 54, .external_lex_state = 11}, [2060] = {.lex_state = 54, .external_lex_state = 11}, - [2061] = {.lex_state = 54, .external_lex_state = 11}, - [2062] = {.lex_state = 54, .external_lex_state = 11}, - [2063] = {.lex_state = 54, .external_lex_state = 11}, - [2064] = {.lex_state = 54, .external_lex_state = 11}, - [2065] = {.lex_state = 3, .external_lex_state = 10}, + [2061] = {.lex_state = 54, .external_lex_state = 13}, + [2062] = {.lex_state = 54, .external_lex_state = 10}, + [2063] = {.lex_state = 54, .external_lex_state = 13}, + [2064] = {.lex_state = 54, .external_lex_state = 12}, + [2065] = {.lex_state = 54, .external_lex_state = 12}, [2066] = {.lex_state = 54, .external_lex_state = 10}, - [2067] = {.lex_state = 33, .external_lex_state = 13}, - [2068] = {.lex_state = 33, .external_lex_state = 13}, - [2069] = {.lex_state = 54, .external_lex_state = 13}, - [2070] = {.lex_state = 33, .external_lex_state = 13}, - [2071] = {.lex_state = 54, .external_lex_state = 10}, - [2072] = {.lex_state = 54, .external_lex_state = 11}, - [2073] = {.lex_state = 54, .external_lex_state = 11}, - [2074] = {.lex_state = 54, .external_lex_state = 11}, - [2075] = {.lex_state = 54, .external_lex_state = 9}, + [2067] = {.lex_state = 54, .external_lex_state = 9}, + [2068] = {.lex_state = 54, .external_lex_state = 12}, + [2069] = {.lex_state = 33, .external_lex_state = 13}, + [2070] = {.lex_state = 54, .external_lex_state = 12}, + [2071] = {.lex_state = 33, .external_lex_state = 12}, + [2072] = {.lex_state = 54, .external_lex_state = 12}, + [2073] = {.lex_state = 54, .external_lex_state = 12}, + [2074] = {.lex_state = 33, .external_lex_state = 12}, + [2075] = {.lex_state = 33, .external_lex_state = 9}, [2076] = {.lex_state = 54, .external_lex_state = 12}, - [2077] = {.lex_state = 54, .external_lex_state = 11}, - [2078] = {.lex_state = 54, .external_lex_state = 9}, - [2079] = {.lex_state = 33, .external_lex_state = 13}, - [2080] = {.lex_state = 54, .external_lex_state = 10}, - [2081] = {.lex_state = 54, .external_lex_state = 16}, - [2082] = {.lex_state = 54, .external_lex_state = 11}, - [2083] = {.lex_state = 54, .external_lex_state = 11}, - [2084] = {.lex_state = 54, .external_lex_state = 11}, - [2085] = {.lex_state = 54, .external_lex_state = 11}, - [2086] = {.lex_state = 54, .external_lex_state = 13}, + [2077] = {.lex_state = 54, .external_lex_state = 12}, + [2078] = {.lex_state = 33, .external_lex_state = 12}, + [2079] = {.lex_state = 54, .external_lex_state = 10}, + [2080] = {.lex_state = 54, .external_lex_state = 12}, + [2081] = {.lex_state = 33, .external_lex_state = 11}, + [2082] = {.lex_state = 54, .external_lex_state = 12}, + [2083] = {.lex_state = 54, .external_lex_state = 10}, + [2084] = {.lex_state = 33, .external_lex_state = 13}, + [2085] = {.lex_state = 54, .external_lex_state = 13}, + [2086] = {.lex_state = 54, .external_lex_state = 12}, [2087] = {.lex_state = 54, .external_lex_state = 12}, [2088] = {.lex_state = 54, .external_lex_state = 12}, - [2089] = {.lex_state = 54, .external_lex_state = 11}, - [2090] = {.lex_state = 54, .external_lex_state = 13}, + [2089] = {.lex_state = 54, .external_lex_state = 12}, + [2090] = {.lex_state = 54, .external_lex_state = 12}, [2091] = {.lex_state = 54, .external_lex_state = 12}, - [2092] = {.lex_state = 54, .external_lex_state = 16}, - [2093] = {.lex_state = 54, .external_lex_state = 12}, - [2094] = {.lex_state = 54, .external_lex_state = 13}, - [2095] = {.lex_state = 35, .external_lex_state = 13}, - [2096] = {.lex_state = 54, .external_lex_state = 9}, + [2092] = {.lex_state = 54, .external_lex_state = 9}, + [2093] = {.lex_state = 33, .external_lex_state = 12}, + [2094] = {.lex_state = 33, .external_lex_state = 12}, + [2095] = {.lex_state = 54, .external_lex_state = 10}, + [2096] = {.lex_state = 54, .external_lex_state = 12}, [2097] = {.lex_state = 54, .external_lex_state = 13}, - [2098] = {.lex_state = 54, .external_lex_state = 13}, - [2099] = {.lex_state = 54, .external_lex_state = 11}, - [2100] = {.lex_state = 54, .external_lex_state = 11}, - [2101] = {.lex_state = 54, .external_lex_state = 10}, - [2102] = {.lex_state = 54, .external_lex_state = 10}, - [2103] = {.lex_state = 54, .external_lex_state = 11}, - [2104] = {.lex_state = 54, .external_lex_state = 9}, - [2105] = {.lex_state = 54, .external_lex_state = 12}, - [2106] = {.lex_state = 54, .external_lex_state = 13}, - [2107] = {.lex_state = 3, .external_lex_state = 10}, - [2108] = {.lex_state = 54, .external_lex_state = 11}, - [2109] = {.lex_state = 54, .external_lex_state = 10}, - [2110] = {.lex_state = 54, .external_lex_state = 9}, - [2111] = {.lex_state = 32, .external_lex_state = 13}, - [2112] = {.lex_state = 54, .external_lex_state = 12}, + [2098] = {.lex_state = 54, .external_lex_state = 12}, + [2099] = {.lex_state = 54, .external_lex_state = 13}, + [2100] = {.lex_state = 54, .external_lex_state = 12}, + [2101] = {.lex_state = 54, .external_lex_state = 12}, + [2102] = {.lex_state = 54, .external_lex_state = 12}, + [2103] = {.lex_state = 54, .external_lex_state = 12}, + [2104] = {.lex_state = 54, .external_lex_state = 11}, + [2105] = {.lex_state = 54, .external_lex_state = 11}, + [2106] = {.lex_state = 54, .external_lex_state = 10}, + [2107] = {.lex_state = 33, .external_lex_state = 12}, + [2108] = {.lex_state = 3, .external_lex_state = 10}, + [2109] = {.lex_state = 33, .external_lex_state = 12}, + [2110] = {.lex_state = 54, .external_lex_state = 12}, + [2111] = {.lex_state = 54, .external_lex_state = 12}, + [2112] = {.lex_state = 54, .external_lex_state = 11}, [2113] = {.lex_state = 54, .external_lex_state = 12}, [2114] = {.lex_state = 54, .external_lex_state = 12}, - [2115] = {.lex_state = 54, .external_lex_state = 11}, - [2116] = {.lex_state = 54, .external_lex_state = 11}, - [2117] = {.lex_state = 54, .external_lex_state = 11}, - [2118] = {.lex_state = 54, .external_lex_state = 13}, - [2119] = {.lex_state = 54, .external_lex_state = 11}, - [2120] = {.lex_state = 54, .external_lex_state = 13}, + [2115] = {.lex_state = 54, .external_lex_state = 12}, + [2116] = {.lex_state = 54, .external_lex_state = 12}, + [2117] = {.lex_state = 54, .external_lex_state = 12}, + [2118] = {.lex_state = 54, .external_lex_state = 12}, + [2119] = {.lex_state = 54, .external_lex_state = 12}, + [2120] = {.lex_state = 54, .external_lex_state = 12}, [2121] = {.lex_state = 54, .external_lex_state = 12}, - [2122] = {.lex_state = 54, .external_lex_state = 12}, + [2122] = {.lex_state = 54, .external_lex_state = 10}, [2123] = {.lex_state = 54, .external_lex_state = 12}, - [2124] = {.lex_state = 54, .external_lex_state = 13}, - [2125] = {.lex_state = 54, .external_lex_state = 12}, - [2126] = {.lex_state = 54, .external_lex_state = 11}, - [2127] = {.lex_state = 54, .external_lex_state = 10}, - [2128] = {.lex_state = 54, .external_lex_state = 10}, - [2129] = {.lex_state = 54, .external_lex_state = 16}, - [2130] = {.lex_state = 54, .external_lex_state = 11}, - [2131] = {.lex_state = 54, .external_lex_state = 9}, - [2132] = {.lex_state = 54, .external_lex_state = 9}, - [2133] = {.lex_state = 54, .external_lex_state = 12}, - [2134] = {.lex_state = 54, .external_lex_state = 12}, - [2135] = {.lex_state = 54, .external_lex_state = 11}, - [2136] = {.lex_state = 33, .external_lex_state = 13}, - [2137] = {.lex_state = 54, .external_lex_state = 11}, - [2138] = {.lex_state = 54, .external_lex_state = 12}, - [2139] = {.lex_state = 54, .external_lex_state = 10}, - [2140] = {.lex_state = 54, .external_lex_state = 12}, - [2141] = {.lex_state = 35, .external_lex_state = 13}, - [2142] = {.lex_state = 54, .external_lex_state = 11}, - [2143] = {.lex_state = 54, .external_lex_state = 12}, - [2144] = {.lex_state = 54, .external_lex_state = 12}, - [2145] = {.lex_state = 54, .external_lex_state = 11}, + [2124] = {.lex_state = 54, .external_lex_state = 12}, + [2125] = {.lex_state = 54, .external_lex_state = 13}, + [2126] = {.lex_state = 54, .external_lex_state = 10}, + [2127] = {.lex_state = 54, .external_lex_state = 11}, + [2128] = {.lex_state = 54, .external_lex_state = 13}, + [2129] = {.lex_state = 54, .external_lex_state = 13}, + [2130] = {.lex_state = 54, .external_lex_state = 15}, + [2131] = {.lex_state = 54, .external_lex_state = 13}, + [2132] = {.lex_state = 54, .external_lex_state = 15}, + [2133] = {.lex_state = 54, .external_lex_state = 13}, + [2134] = {.lex_state = 54, .external_lex_state = 11}, + [2135] = {.lex_state = 54, .external_lex_state = 10}, + [2136] = {.lex_state = 54, .external_lex_state = 11}, + [2137] = {.lex_state = 54, .external_lex_state = 13}, + [2138] = {.lex_state = 54, .external_lex_state = 11}, + [2139] = {.lex_state = 54, .external_lex_state = 12}, + [2140] = {.lex_state = 54, .external_lex_state = 13}, + [2141] = {.lex_state = 54, .external_lex_state = 11}, + [2142] = {.lex_state = 54, .external_lex_state = 13}, + [2143] = {.lex_state = 54, .external_lex_state = 13}, + [2144] = {.lex_state = 54, .external_lex_state = 13}, + [2145] = {.lex_state = 54, .external_lex_state = 13}, [2146] = {.lex_state = 54, .external_lex_state = 11}, [2147] = {.lex_state = 54, .external_lex_state = 11}, - [2148] = {.lex_state = 33, .external_lex_state = 13}, - [2149] = {.lex_state = 54, .external_lex_state = 12}, + [2148] = {.lex_state = 54, .external_lex_state = 13}, + [2149] = {.lex_state = 54, .external_lex_state = 13}, [2150] = {.lex_state = 54, .external_lex_state = 13}, [2151] = {.lex_state = 54, .external_lex_state = 11}, - [2152] = {.lex_state = 35, .external_lex_state = 13}, + [2152] = {.lex_state = 54, .external_lex_state = 13}, [2153] = {.lex_state = 54, .external_lex_state = 11}, [2154] = {.lex_state = 54, .external_lex_state = 13}, - [2155] = {.lex_state = 3, .external_lex_state = 10}, + [2155] = {.lex_state = 54, .external_lex_state = 11}, [2156] = {.lex_state = 54, .external_lex_state = 11}, - [2157] = {.lex_state = 54, .external_lex_state = 11}, - [2158] = {.lex_state = 54, .external_lex_state = 11}, - [2159] = {.lex_state = 54, .external_lex_state = 13}, + [2157] = {.lex_state = 54, .external_lex_state = 13}, + [2158] = {.lex_state = 54, .external_lex_state = 15}, + [2159] = {.lex_state = 54, .external_lex_state = 9}, [2160] = {.lex_state = 54, .external_lex_state = 12}, - [2161] = {.lex_state = 54, .external_lex_state = 12}, + [2161] = {.lex_state = 54, .external_lex_state = 11}, [2162] = {.lex_state = 54, .external_lex_state = 12}, - [2163] = {.lex_state = 54, .external_lex_state = 13}, - [2164] = {.lex_state = 54, .external_lex_state = 10}, - [2165] = {.lex_state = 54, .external_lex_state = 12}, - [2166] = {.lex_state = 54, .external_lex_state = 10}, - [2167] = {.lex_state = 32, .external_lex_state = 13}, - [2168] = {.lex_state = 54, .external_lex_state = 9}, - [2169] = {.lex_state = 54, .external_lex_state = 13}, + [2163] = {.lex_state = 54, .external_lex_state = 12}, + [2164] = {.lex_state = 54, .external_lex_state = 9}, + [2165] = {.lex_state = 54, .external_lex_state = 11}, + [2166] = {.lex_state = 54, .external_lex_state = 11}, + [2167] = {.lex_state = 33, .external_lex_state = 12}, + [2168] = {.lex_state = 54, .external_lex_state = 11}, + [2169] = {.lex_state = 54, .external_lex_state = 9}, [2170] = {.lex_state = 54, .external_lex_state = 11}, - [2171] = {.lex_state = 54, .external_lex_state = 10}, - [2172] = {.lex_state = 33, .external_lex_state = 13}, - [2173] = {.lex_state = 54, .external_lex_state = 11}, + [2171] = {.lex_state = 54, .external_lex_state = 9}, + [2172] = {.lex_state = 33, .external_lex_state = 12}, + [2173] = {.lex_state = 54, .external_lex_state = 12}, [2174] = {.lex_state = 54, .external_lex_state = 9}, - [2175] = {.lex_state = 54, .external_lex_state = 9}, + [2175] = {.lex_state = 54, .external_lex_state = 11}, [2176] = {.lex_state = 54, .external_lex_state = 9}, - [2177] = {.lex_state = 54, .external_lex_state = 13}, - [2178] = {.lex_state = 54, .external_lex_state = 11}, + [2177] = {.lex_state = 54, .external_lex_state = 9}, + [2178] = {.lex_state = 54, .external_lex_state = 10}, [2179] = {.lex_state = 54, .external_lex_state = 13}, - [2180] = {.lex_state = 54, .external_lex_state = 13}, + [2180] = {.lex_state = 54, .external_lex_state = 9}, [2181] = {.lex_state = 54, .external_lex_state = 11}, - [2182] = {.lex_state = 54, .external_lex_state = 12}, + [2182] = {.lex_state = 54, .external_lex_state = 11}, [2183] = {.lex_state = 54, .external_lex_state = 13}, - [2184] = {.lex_state = 54, .external_lex_state = 13}, - [2185] = {.lex_state = 54, .external_lex_state = 12}, - [2186] = {.lex_state = 54, .external_lex_state = 11}, - [2187] = {.lex_state = 54, .external_lex_state = 12}, - [2188] = {.lex_state = 54, .external_lex_state = 16}, + [2184] = {.lex_state = 54, .external_lex_state = 11}, + [2185] = {.lex_state = 54, .external_lex_state = 13}, + [2186] = {.lex_state = 54, .external_lex_state = 13}, + [2187] = {.lex_state = 54, .external_lex_state = 13}, + [2188] = {.lex_state = 54, .external_lex_state = 13}, [2189] = {.lex_state = 54, .external_lex_state = 11}, - [2190] = {.lex_state = 54, .external_lex_state = 10}, - [2191] = {.lex_state = 54, .external_lex_state = 10}, - [2192] = {.lex_state = 54, .external_lex_state = 12}, - [2193] = {.lex_state = 54, .external_lex_state = 10}, - [2194] = {.lex_state = 54, .external_lex_state = 9}, - [2195] = {.lex_state = 54, .external_lex_state = 9}, - [2196] = {.lex_state = 54, .external_lex_state = 12}, + [2190] = {.lex_state = 32, .external_lex_state = 12}, + [2191] = {.lex_state = 54, .external_lex_state = 9}, + [2192] = {.lex_state = 54, .external_lex_state = 11}, + [2193] = {.lex_state = 54, .external_lex_state = 11}, + [2194] = {.lex_state = 54, .external_lex_state = 10}, + [2195] = {.lex_state = 54, .external_lex_state = 11}, + [2196] = {.lex_state = 54, .external_lex_state = 13}, [2197] = {.lex_state = 54, .external_lex_state = 11}, [2198] = {.lex_state = 54, .external_lex_state = 11}, - [2199] = {.lex_state = 54, .external_lex_state = 11}, - [2200] = {.lex_state = 54, .external_lex_state = 10}, - [2201] = {.lex_state = 54, .external_lex_state = 10}, - [2202] = {.lex_state = 54, .external_lex_state = 9}, - [2203] = {.lex_state = 54, .external_lex_state = 9}, - [2204] = {.lex_state = 54, .external_lex_state = 16}, - [2205] = {.lex_state = 54, .external_lex_state = 13}, - [2206] = {.lex_state = 54, .external_lex_state = 11}, + [2199] = {.lex_state = 54, .external_lex_state = 13}, + [2200] = {.lex_state = 54, .external_lex_state = 9}, + [2201] = {.lex_state = 54, .external_lex_state = 13}, + [2202] = {.lex_state = 54, .external_lex_state = 13}, + [2203] = {.lex_state = 54, .external_lex_state = 11}, + [2204] = {.lex_state = 54, .external_lex_state = 13}, + [2205] = {.lex_state = 54, .external_lex_state = 11}, + [2206] = {.lex_state = 54, .external_lex_state = 9}, [2207] = {.lex_state = 54, .external_lex_state = 11}, - [2208] = {.lex_state = 54, .external_lex_state = 11}, - [2209] = {.lex_state = 54, .external_lex_state = 10}, - [2210] = {.lex_state = 3, .external_lex_state = 10}, - [2211] = {.lex_state = 54, .external_lex_state = 12}, - [2212] = {.lex_state = 54, .external_lex_state = 12}, - [2213] = {.lex_state = 54, .external_lex_state = 10}, - [2214] = {.lex_state = 54, .external_lex_state = 12}, + [2208] = {.lex_state = 54, .external_lex_state = 9}, + [2209] = {.lex_state = 54, .external_lex_state = 15}, + [2210] = {.lex_state = 54, .external_lex_state = 12}, + [2211] = {.lex_state = 54, .external_lex_state = 9}, + [2212] = {.lex_state = 54, .external_lex_state = 13}, + [2213] = {.lex_state = 54, .external_lex_state = 11}, + [2214] = {.lex_state = 54, .external_lex_state = 10}, [2215] = {.lex_state = 54, .external_lex_state = 11}, - [2216] = {.lex_state = 54, .external_lex_state = 11}, + [2216] = {.lex_state = 54, .external_lex_state = 10}, [2217] = {.lex_state = 54, .external_lex_state = 11}, [2218] = {.lex_state = 54, .external_lex_state = 11}, - [2219] = {.lex_state = 54, .external_lex_state = 12}, - [2220] = {.lex_state = 54, .external_lex_state = 12}, - [2221] = {.lex_state = 54, .external_lex_state = 12}, - [2222] = {.lex_state = 54, .external_lex_state = 9}, - [2223] = {.lex_state = 35, .external_lex_state = 13}, - [2224] = {.lex_state = 54, .external_lex_state = 12}, - [2225] = {.lex_state = 54, .external_lex_state = 11}, - [2226] = {.lex_state = 33, .external_lex_state = 13}, - [2227] = {.lex_state = 54, .external_lex_state = 11}, - [2228] = {.lex_state = 54, .external_lex_state = 11}, - [2229] = {.lex_state = 35, .external_lex_state = 13}, - [2230] = {.lex_state = 54, .external_lex_state = 9}, - [2231] = {.lex_state = 3, .external_lex_state = 10}, - [2232] = {.lex_state = 54, .external_lex_state = 12}, - [2233] = {.lex_state = 3, .external_lex_state = 10}, - [2234] = {.lex_state = 54, .external_lex_state = 9}, - [2235] = {.lex_state = 54, .external_lex_state = 12}, - [2236] = {.lex_state = 54, .external_lex_state = 9}, - [2237] = {.lex_state = 54, .external_lex_state = 11}, - [2238] = {.lex_state = 54, .external_lex_state = 11}, - [2239] = {.lex_state = 54, .external_lex_state = 11}, - [2240] = {.lex_state = 54, .external_lex_state = 11}, - [2241] = {.lex_state = 54, .external_lex_state = 11}, - [2242] = {.lex_state = 54, .external_lex_state = 11}, + [2219] = {.lex_state = 54, .external_lex_state = 10}, + [2220] = {.lex_state = 54, .external_lex_state = 11}, + [2221] = {.lex_state = 54, .external_lex_state = 10}, + [2222] = {.lex_state = 54, .external_lex_state = 10}, + [2223] = {.lex_state = 54, .external_lex_state = 11}, + [2224] = {.lex_state = 54, .external_lex_state = 11}, + [2225] = {.lex_state = 54, .external_lex_state = 12}, + [2226] = {.lex_state = 54, .external_lex_state = 10}, + [2227] = {.lex_state = 54, .external_lex_state = 15}, + [2228] = {.lex_state = 54, .external_lex_state = 10}, + [2229] = {.lex_state = 54, .external_lex_state = 10}, + [2230] = {.lex_state = 54, .external_lex_state = 10}, + [2231] = {.lex_state = 54, .external_lex_state = 10}, + [2232] = {.lex_state = 54, .external_lex_state = 10}, + [2233] = {.lex_state = 54, .external_lex_state = 10}, + [2234] = {.lex_state = 54, .external_lex_state = 10}, + [2235] = {.lex_state = 54, .external_lex_state = 10}, + [2236] = {.lex_state = 54, .external_lex_state = 10}, + [2237] = {.lex_state = 54, .external_lex_state = 9}, + [2238] = {.lex_state = 54, .external_lex_state = 12}, + [2239] = {.lex_state = 32, .external_lex_state = 12}, + [2240] = {.lex_state = 54, .external_lex_state = 10}, + [2241] = {.lex_state = 54, .external_lex_state = 10}, + [2242] = {.lex_state = 54, .external_lex_state = 9}, [2243] = {.lex_state = 54, .external_lex_state = 10}, - [2244] = {.lex_state = 54, .external_lex_state = 12}, - [2245] = {.lex_state = 54, .external_lex_state = 12}, - [2246] = {.lex_state = 54, .external_lex_state = 11}, - [2247] = {.lex_state = 54, .external_lex_state = 10}, - [2248] = {.lex_state = 54, .external_lex_state = 11}, - [2249] = {.lex_state = 54, .external_lex_state = 11}, - [2250] = {.lex_state = 54, .external_lex_state = 10}, - [2251] = {.lex_state = 54, .external_lex_state = 9}, - [2252] = {.lex_state = 54, .external_lex_state = 13}, - [2253] = {.lex_state = 54, .external_lex_state = 13}, - [2254] = {.lex_state = 54, .external_lex_state = 11}, - [2255] = {.lex_state = 54, .external_lex_state = 9}, - [2256] = {.lex_state = 54, .external_lex_state = 9}, - [2257] = {.lex_state = 54, .external_lex_state = 9}, - [2258] = {.lex_state = 54, .external_lex_state = 11}, - [2259] = {.lex_state = 54, .external_lex_state = 11}, - [2260] = {.lex_state = 54, .external_lex_state = 13}, - [2261] = {.lex_state = 54, .external_lex_state = 13}, - [2262] = {.lex_state = 35, .external_lex_state = 13}, - [2263] = {.lex_state = 54, .external_lex_state = 15}, - [2264] = {.lex_state = 54, .external_lex_state = 9}, - [2265] = {.lex_state = 54, .external_lex_state = 15}, - [2266] = {.lex_state = 54, .external_lex_state = 15}, + [2244] = {.lex_state = 54, .external_lex_state = 9}, + [2245] = {.lex_state = 54, .external_lex_state = 10}, + [2246] = {.lex_state = 54, .external_lex_state = 10}, + [2247] = {.lex_state = 54, .external_lex_state = 12}, + [2248] = {.lex_state = 54, .external_lex_state = 12}, + [2249] = {.lex_state = 54, .external_lex_state = 10}, + [2250] = {.lex_state = 54, .external_lex_state = 9}, + [2251] = {.lex_state = 54, .external_lex_state = 11}, + [2252] = {.lex_state = 54, .external_lex_state = 12}, + [2253] = {.lex_state = 54, .external_lex_state = 12}, + [2254] = {.lex_state = 54, .external_lex_state = 10}, + [2255] = {.lex_state = 54, .external_lex_state = 10}, + [2256] = {.lex_state = 54, .external_lex_state = 11}, + [2257] = {.lex_state = 54, .external_lex_state = 10}, + [2258] = {.lex_state = 54, .external_lex_state = 13}, + [2259] = {.lex_state = 54, .external_lex_state = 12}, + [2260] = {.lex_state = 54, .external_lex_state = 11}, + [2261] = {.lex_state = 54, .external_lex_state = 12}, + [2262] = {.lex_state = 54, .external_lex_state = 9}, + [2263] = {.lex_state = 54, .external_lex_state = 13}, + [2264] = {.lex_state = 54, .external_lex_state = 13}, + [2265] = {.lex_state = 54, .external_lex_state = 11}, + [2266] = {.lex_state = 54, .external_lex_state = 11}, [2267] = {.lex_state = 54, .external_lex_state = 11}, - [2268] = {.lex_state = 54, .external_lex_state = 15}, - [2269] = {.lex_state = 54, .external_lex_state = 15}, - [2270] = {.lex_state = 35, .external_lex_state = 13}, - [2271] = {.lex_state = 54, .external_lex_state = 12}, - [2272] = {.lex_state = 54, .external_lex_state = 15}, - [2273] = {.lex_state = 54, .external_lex_state = 15}, + [2268] = {.lex_state = 54, .external_lex_state = 11}, + [2269] = {.lex_state = 54, .external_lex_state = 10}, + [2270] = {.lex_state = 54, .external_lex_state = 11}, + [2271] = {.lex_state = 54, .external_lex_state = 10}, + [2272] = {.lex_state = 54, .external_lex_state = 9}, + [2273] = {.lex_state = 54, .external_lex_state = 12}, [2274] = {.lex_state = 54, .external_lex_state = 11}, - [2275] = {.lex_state = 54, .external_lex_state = 9}, - [2276] = {.lex_state = 54, .external_lex_state = 15}, - [2277] = {.lex_state = 54, .external_lex_state = 9}, - [2278] = {.lex_state = 54, .external_lex_state = 15}, - [2279] = {.lex_state = 54, .external_lex_state = 15}, - [2280] = {.lex_state = 54, .external_lex_state = 15}, - [2281] = {.lex_state = 54, .external_lex_state = 13}, - [2282] = {.lex_state = 54, .external_lex_state = 15}, - [2283] = {.lex_state = 54, .external_lex_state = 11}, - [2284] = {.lex_state = 54, .external_lex_state = 15}, - [2285] = {.lex_state = 54, .external_lex_state = 15}, - [2286] = {.lex_state = 54, .external_lex_state = 15}, - [2287] = {.lex_state = 54, .external_lex_state = 15}, - [2288] = {.lex_state = 54, .external_lex_state = 15}, - [2289] = {.lex_state = 54, .external_lex_state = 15}, - [2290] = {.lex_state = 54, .external_lex_state = 15}, - [2291] = {.lex_state = 54, .external_lex_state = 15}, - [2292] = {.lex_state = 35, .external_lex_state = 13}, + [2275] = {.lex_state = 54, .external_lex_state = 11}, + [2276] = {.lex_state = 54, .external_lex_state = 11}, + [2277] = {.lex_state = 54, .external_lex_state = 11}, + [2278] = {.lex_state = 54, .external_lex_state = 10}, + [2279] = {.lex_state = 54, .external_lex_state = 11}, + [2280] = {.lex_state = 54, .external_lex_state = 11}, + [2281] = {.lex_state = 54, .external_lex_state = 9}, + [2282] = {.lex_state = 54, .external_lex_state = 10}, + [2283] = {.lex_state = 54, .external_lex_state = 12}, + [2284] = {.lex_state = 54, .external_lex_state = 12}, + [2285] = {.lex_state = 54, .external_lex_state = 16}, + [2286] = {.lex_state = 54, .external_lex_state = 9}, + [2287] = {.lex_state = 34, .external_lex_state = 12}, + [2288] = {.lex_state = 54, .external_lex_state = 11}, + [2289] = {.lex_state = 54, .external_lex_state = 11}, + [2290] = {.lex_state = 54, .external_lex_state = 9}, + [2291] = {.lex_state = 54, .external_lex_state = 11}, + [2292] = {.lex_state = 54, .external_lex_state = 13}, [2293] = {.lex_state = 54, .external_lex_state = 11}, - [2294] = {.lex_state = 54, .external_lex_state = 15}, - [2295] = {.lex_state = 54, .external_lex_state = 15}, - [2296] = {.lex_state = 54, .external_lex_state = 13}, - [2297] = {.lex_state = 35, .external_lex_state = 13}, - [2298] = {.lex_state = 54, .external_lex_state = 15}, - [2299] = {.lex_state = 54, .external_lex_state = 12}, - [2300] = {.lex_state = 54, .external_lex_state = 12}, - [2301] = {.lex_state = 54, .external_lex_state = 10}, - [2302] = {.lex_state = 54, .external_lex_state = 11}, - [2303] = {.lex_state = 54, .external_lex_state = 9}, - [2304] = {.lex_state = 54, .external_lex_state = 15}, - [2305] = {.lex_state = 35, .external_lex_state = 13}, - [2306] = {.lex_state = 54, .external_lex_state = 9}, - [2307] = {.lex_state = 35, .external_lex_state = 13}, + [2294] = {.lex_state = 54, .external_lex_state = 13}, + [2295] = {.lex_state = 54, .external_lex_state = 11}, + [2296] = {.lex_state = 54, .external_lex_state = 9}, + [2297] = {.lex_state = 54, .external_lex_state = 12}, + [2298] = {.lex_state = 54, .external_lex_state = 10}, + [2299] = {.lex_state = 54, .external_lex_state = 11}, + [2300] = {.lex_state = 54, .external_lex_state = 11}, + [2301] = {.lex_state = 54, .external_lex_state = 11}, + [2302] = {.lex_state = 54, .external_lex_state = 10}, + [2303] = {.lex_state = 54, .external_lex_state = 13}, + [2304] = {.lex_state = 54, .external_lex_state = 13}, + [2305] = {.lex_state = 54, .external_lex_state = 11}, + [2306] = {.lex_state = 54, .external_lex_state = 13}, + [2307] = {.lex_state = 54, .external_lex_state = 13}, [2308] = {.lex_state = 54, .external_lex_state = 11}, - [2309] = {.lex_state = 54, .external_lex_state = 9}, - [2310] = {.lex_state = 35, .external_lex_state = 13}, - [2311] = {.lex_state = 54, .external_lex_state = 11}, - [2312] = {.lex_state = 54, .external_lex_state = 9}, - [2313] = {.lex_state = 35, .external_lex_state = 13}, - [2314] = {.lex_state = 54, .external_lex_state = 15}, - [2315] = {.lex_state = 54, .external_lex_state = 11}, - [2316] = {.lex_state = 54, .external_lex_state = 9}, - [2317] = {.lex_state = 54, .external_lex_state = 12}, - [2318] = {.lex_state = 54, .external_lex_state = 15}, - [2319] = {.lex_state = 54, .external_lex_state = 9}, - [2320] = {.lex_state = 54, .external_lex_state = 9}, + [2309] = {.lex_state = 54, .external_lex_state = 12}, + [2310] = {.lex_state = 54, .external_lex_state = 13}, + [2311] = {.lex_state = 54, .external_lex_state = 13}, + [2312] = {.lex_state = 54, .external_lex_state = 10}, + [2313] = {.lex_state = 54, .external_lex_state = 10}, + [2314] = {.lex_state = 33, .external_lex_state = 12}, + [2315] = {.lex_state = 33, .external_lex_state = 12}, + [2316] = {.lex_state = 33, .external_lex_state = 12}, + [2317] = {.lex_state = 54, .external_lex_state = 13}, + [2318] = {.lex_state = 54, .external_lex_state = 11}, + [2319] = {.lex_state = 54, .external_lex_state = 11}, + [2320] = {.lex_state = 33, .external_lex_state = 12}, [2321] = {.lex_state = 54, .external_lex_state = 10}, - [2322] = {.lex_state = 54, .external_lex_state = 12}, - [2323] = {.lex_state = 54, .external_lex_state = 10}, - [2324] = {.lex_state = 54, .external_lex_state = 9}, - [2325] = {.lex_state = 54, .external_lex_state = 12}, - [2326] = {.lex_state = 54, .external_lex_state = 12}, - [2327] = {.lex_state = 54, .external_lex_state = 9}, - [2328] = {.lex_state = 54, .external_lex_state = 9}, - [2329] = {.lex_state = 54, .external_lex_state = 9}, - [2330] = {.lex_state = 54, .external_lex_state = 11}, - [2331] = {.lex_state = 54, .external_lex_state = 11}, - [2332] = {.lex_state = 54, .external_lex_state = 13}, - [2333] = {.lex_state = 54, .external_lex_state = 13}, - [2334] = {.lex_state = 35, .external_lex_state = 13}, - [2335] = {.lex_state = 54, .external_lex_state = 12}, - [2336] = {.lex_state = 54, .external_lex_state = 13}, - [2337] = {.lex_state = 54, .external_lex_state = 11}, - [2338] = {.lex_state = 54, .external_lex_state = 12}, - [2339] = {.lex_state = 54, .external_lex_state = 10}, - [2340] = {.lex_state = 54, .external_lex_state = 13}, - [2341] = {.lex_state = 54, .external_lex_state = 9}, - [2342] = {.lex_state = 54, .external_lex_state = 13}, - [2343] = {.lex_state = 32, .external_lex_state = 13}, - [2344] = {.lex_state = 54, .external_lex_state = 11}, - [2345] = {.lex_state = 35, .external_lex_state = 13}, + [2322] = {.lex_state = 54, .external_lex_state = 10}, + [2323] = {.lex_state = 54, .external_lex_state = 11}, + [2324] = {.lex_state = 54, .external_lex_state = 12}, + [2325] = {.lex_state = 54, .external_lex_state = 11}, + [2326] = {.lex_state = 54, .external_lex_state = 11}, + [2327] = {.lex_state = 34, .external_lex_state = 12}, + [2328] = {.lex_state = 54, .external_lex_state = 11}, + [2329] = {.lex_state = 54, .external_lex_state = 11}, + [2330] = {.lex_state = 54, .external_lex_state = 13}, + [2331] = {.lex_state = 54, .external_lex_state = 12}, + [2332] = {.lex_state = 54, .external_lex_state = 11}, + [2333] = {.lex_state = 54, .external_lex_state = 10}, + [2334] = {.lex_state = 54, .external_lex_state = 12}, + [2335] = {.lex_state = 54, .external_lex_state = 10}, + [2336] = {.lex_state = 54, .external_lex_state = 11}, + [2337] = {.lex_state = 34, .external_lex_state = 12}, + [2338] = {.lex_state = 54, .external_lex_state = 9}, + [2339] = {.lex_state = 54, .external_lex_state = 11}, + [2340] = {.lex_state = 3, .external_lex_state = 10}, + [2341] = {.lex_state = 54, .external_lex_state = 10}, + [2342] = {.lex_state = 54, .external_lex_state = 12}, + [2343] = {.lex_state = 54, .external_lex_state = 11}, + [2344] = {.lex_state = 54, .external_lex_state = 13}, + [2345] = {.lex_state = 54, .external_lex_state = 10}, [2346] = {.lex_state = 54, .external_lex_state = 12}, - [2347] = {.lex_state = 54, .external_lex_state = 13}, - [2348] = {.lex_state = 54, .external_lex_state = 10}, - [2349] = {.lex_state = 29, .external_lex_state = 13}, - [2350] = {.lex_state = 29, .external_lex_state = 13}, - [2351] = {.lex_state = 54, .external_lex_state = 13}, - [2352] = {.lex_state = 54, .external_lex_state = 13}, - [2353] = {.lex_state = 54, .external_lex_state = 11}, + [2347] = {.lex_state = 54, .external_lex_state = 9}, + [2348] = {.lex_state = 54, .external_lex_state = 16}, + [2349] = {.lex_state = 54, .external_lex_state = 10}, + [2350] = {.lex_state = 54, .external_lex_state = 13}, + [2351] = {.lex_state = 54, .external_lex_state = 11}, + [2352] = {.lex_state = 54, .external_lex_state = 11}, + [2353] = {.lex_state = 54, .external_lex_state = 12}, [2354] = {.lex_state = 54, .external_lex_state = 10}, - [2355] = {.lex_state = 54, .external_lex_state = 13}, - [2356] = {.lex_state = 54, .external_lex_state = 12}, + [2355] = {.lex_state = 54, .external_lex_state = 9}, + [2356] = {.lex_state = 54, .external_lex_state = 13}, [2357] = {.lex_state = 54, .external_lex_state = 13}, - [2358] = {.lex_state = 54, .external_lex_state = 10}, + [2358] = {.lex_state = 54, .external_lex_state = 11}, [2359] = {.lex_state = 54, .external_lex_state = 13}, - [2360] = {.lex_state = 54, .external_lex_state = 10}, - [2361] = {.lex_state = 54, .external_lex_state = 12}, - [2362] = {.lex_state = 54, .external_lex_state = 13}, - [2363] = {.lex_state = 54, .external_lex_state = 13}, + [2360] = {.lex_state = 54, .external_lex_state = 12}, + [2361] = {.lex_state = 54, .external_lex_state = 11}, + [2362] = {.lex_state = 54, .external_lex_state = 12}, + [2363] = {.lex_state = 54, .external_lex_state = 11}, [2364] = {.lex_state = 54, .external_lex_state = 13}, [2365] = {.lex_state = 54, .external_lex_state = 11}, [2366] = {.lex_state = 54, .external_lex_state = 12}, - [2367] = {.lex_state = 54, .external_lex_state = 12}, - [2368] = {.lex_state = 54, .external_lex_state = 10}, - [2369] = {.lex_state = 54, .external_lex_state = 10}, - [2370] = {.lex_state = 54, .external_lex_state = 11}, - [2371] = {.lex_state = 54, .external_lex_state = 13}, - [2372] = {.lex_state = 54, .external_lex_state = 11}, - [2373] = {.lex_state = 54, .external_lex_state = 13}, + [2367] = {.lex_state = 54, .external_lex_state = 13}, + [2368] = {.lex_state = 54, .external_lex_state = 13}, + [2369] = {.lex_state = 54, .external_lex_state = 13}, + [2370] = {.lex_state = 54, .external_lex_state = 13}, + [2371] = {.lex_state = 54, .external_lex_state = 10}, + [2372] = {.lex_state = 54, .external_lex_state = 13}, + [2373] = {.lex_state = 54, .external_lex_state = 16}, [2374] = {.lex_state = 54, .external_lex_state = 13}, - [2375] = {.lex_state = 54, .external_lex_state = 11}, - [2376] = {.lex_state = 54, .external_lex_state = 11}, - [2377] = {.lex_state = 54, .external_lex_state = 13}, - [2378] = {.lex_state = 54, .external_lex_state = 10}, - [2379] = {.lex_state = 54, .external_lex_state = 10}, - [2380] = {.lex_state = 54, .external_lex_state = 12}, + [2375] = {.lex_state = 3, .external_lex_state = 10}, + [2376] = {.lex_state = 54, .external_lex_state = 9}, + [2377] = {.lex_state = 54, .external_lex_state = 9}, + [2378] = {.lex_state = 54, .external_lex_state = 9}, + [2379] = {.lex_state = 54, .external_lex_state = 11}, + [2380] = {.lex_state = 33, .external_lex_state = 12}, [2381] = {.lex_state = 54, .external_lex_state = 13}, - [2382] = {.lex_state = 54, .external_lex_state = 11}, - [2383] = {.lex_state = 54, .external_lex_state = 13}, - [2384] = {.lex_state = 54, .external_lex_state = 13}, - [2385] = {.lex_state = 54, .external_lex_state = 12}, - [2386] = {.lex_state = 54, .external_lex_state = 13}, - [2387] = {.lex_state = 54, .external_lex_state = 12}, + [2382] = {.lex_state = 54, .external_lex_state = 13}, + [2383] = {.lex_state = 54, .external_lex_state = 11}, + [2384] = {.lex_state = 54, .external_lex_state = 11}, + [2385] = {.lex_state = 54, .external_lex_state = 10}, + [2386] = {.lex_state = 54, .external_lex_state = 11}, + [2387] = {.lex_state = 54, .external_lex_state = 13}, [2388] = {.lex_state = 54, .external_lex_state = 10}, - [2389] = {.lex_state = 54, .external_lex_state = 12}, - [2390] = {.lex_state = 54, .external_lex_state = 10}, - [2391] = {.lex_state = 54, .external_lex_state = 13}, - [2392] = {.lex_state = 54, .external_lex_state = 13}, - [2393] = {.lex_state = 54, .external_lex_state = 13}, - [2394] = {.lex_state = 54, .external_lex_state = 13}, + [2389] = {.lex_state = 34, .external_lex_state = 12}, + [2390] = {.lex_state = 54, .external_lex_state = 11}, + [2391] = {.lex_state = 54, .external_lex_state = 11}, + [2392] = {.lex_state = 54, .external_lex_state = 11}, + [2393] = {.lex_state = 54, .external_lex_state = 11}, + [2394] = {.lex_state = 54, .external_lex_state = 10}, [2395] = {.lex_state = 54, .external_lex_state = 13}, - [2396] = {.lex_state = 54, .external_lex_state = 13}, + [2396] = {.lex_state = 54, .external_lex_state = 12}, [2397] = {.lex_state = 54, .external_lex_state = 13}, - [2398] = {.lex_state = 54, .external_lex_state = 10}, - [2399] = {.lex_state = 54, .external_lex_state = 12}, - [2400] = {.lex_state = 54, .external_lex_state = 13}, - [2401] = {.lex_state = 54, .external_lex_state = 13}, - [2402] = {.lex_state = 54, .external_lex_state = 13}, - [2403] = {.lex_state = 54, .external_lex_state = 13}, + [2398] = {.lex_state = 54, .external_lex_state = 13}, + [2399] = {.lex_state = 54, .external_lex_state = 10}, + [2400] = {.lex_state = 54, .external_lex_state = 9}, + [2401] = {.lex_state = 54, .external_lex_state = 11}, + [2402] = {.lex_state = 54, .external_lex_state = 11}, + [2403] = {.lex_state = 54, .external_lex_state = 10}, [2404] = {.lex_state = 54, .external_lex_state = 11}, - [2405] = {.lex_state = 54, .external_lex_state = 13}, - [2406] = {.lex_state = 54, .external_lex_state = 11}, - [2407] = {.lex_state = 54, .external_lex_state = 11}, + [2405] = {.lex_state = 54, .external_lex_state = 12}, + [2406] = {.lex_state = 54, .external_lex_state = 13}, + [2407] = {.lex_state = 54, .external_lex_state = 13}, [2408] = {.lex_state = 54, .external_lex_state = 13}, - [2409] = {.lex_state = 54, .external_lex_state = 11}, - [2410] = {.lex_state = 54, .external_lex_state = 12}, - [2411] = {.lex_state = 29, .external_lex_state = 13}, - [2412] = {.lex_state = 54, .external_lex_state = 13}, - [2413] = {.lex_state = 54, .external_lex_state = 13}, - [2414] = {.lex_state = 54, .external_lex_state = 10}, - [2415] = {.lex_state = 54, .external_lex_state = 10}, - [2416] = {.lex_state = 54, .external_lex_state = 11}, + [2409] = {.lex_state = 54, .external_lex_state = 10}, + [2410] = {.lex_state = 54, .external_lex_state = 10}, + [2411] = {.lex_state = 54, .external_lex_state = 10}, + [2412] = {.lex_state = 54, .external_lex_state = 10}, + [2413] = {.lex_state = 54, .external_lex_state = 12}, + [2414] = {.lex_state = 54, .external_lex_state = 12}, + [2415] = {.lex_state = 54, .external_lex_state = 11}, + [2416] = {.lex_state = 54, .external_lex_state = 9}, [2417] = {.lex_state = 54, .external_lex_state = 10}, - [2418] = {.lex_state = 54, .external_lex_state = 10}, - [2419] = {.lex_state = 54, .external_lex_state = 11}, + [2418] = {.lex_state = 3, .external_lex_state = 10}, + [2419] = {.lex_state = 54, .external_lex_state = 12}, [2420] = {.lex_state = 54, .external_lex_state = 10}, - [2421] = {.lex_state = 54, .external_lex_state = 13}, + [2421] = {.lex_state = 54, .external_lex_state = 11}, [2422] = {.lex_state = 54, .external_lex_state = 13}, - [2423] = {.lex_state = 54, .external_lex_state = 13}, - [2424] = {.lex_state = 54, .external_lex_state = 11}, - [2425] = {.lex_state = 54, .external_lex_state = 13}, + [2423] = {.lex_state = 33, .external_lex_state = 12}, + [2424] = {.lex_state = 54, .external_lex_state = 9}, + [2425] = {.lex_state = 3, .external_lex_state = 10}, [2426] = {.lex_state = 54, .external_lex_state = 11}, [2427] = {.lex_state = 54, .external_lex_state = 12}, [2428] = {.lex_state = 54, .external_lex_state = 13}, - [2429] = {.lex_state = 54, .external_lex_state = 10}, - [2430] = {.lex_state = 54, .external_lex_state = 10}, + [2429] = {.lex_state = 54, .external_lex_state = 12}, + [2430] = {.lex_state = 54, .external_lex_state = 16}, [2431] = {.lex_state = 54, .external_lex_state = 10}, - [2432] = {.lex_state = 54, .external_lex_state = 10}, - [2433] = {.lex_state = 54, .external_lex_state = 13}, + [2432] = {.lex_state = 54, .external_lex_state = 16}, + [2433] = {.lex_state = 54, .external_lex_state = 10}, [2434] = {.lex_state = 54, .external_lex_state = 12}, - [2435] = {.lex_state = 54, .external_lex_state = 13}, - [2436] = {.lex_state = 54, .external_lex_state = 10}, - [2437] = {.lex_state = 54, .external_lex_state = 13}, - [2438] = {.lex_state = 54, .external_lex_state = 12}, - [2439] = {.lex_state = 54, .external_lex_state = 11}, - [2440] = {.lex_state = 54, .external_lex_state = 13}, + [2435] = {.lex_state = 3, .external_lex_state = 10}, + [2436] = {.lex_state = 54, .external_lex_state = 13}, + [2437] = {.lex_state = 54, .external_lex_state = 11}, + [2438] = {.lex_state = 54, .external_lex_state = 11}, + [2439] = {.lex_state = 3, .external_lex_state = 10}, + [2440] = {.lex_state = 54, .external_lex_state = 11}, [2441] = {.lex_state = 54, .external_lex_state = 13}, - [2442] = {.lex_state = 54, .external_lex_state = 13}, - [2443] = {.lex_state = 54, .external_lex_state = 10}, - [2444] = {.lex_state = 54, .external_lex_state = 13}, + [2442] = {.lex_state = 54, .external_lex_state = 12}, + [2443] = {.lex_state = 54, .external_lex_state = 12}, + [2444] = {.lex_state = 54, .external_lex_state = 9}, [2445] = {.lex_state = 54, .external_lex_state = 13}, [2446] = {.lex_state = 54, .external_lex_state = 13}, - [2447] = {.lex_state = 54, .external_lex_state = 13}, - [2448] = {.lex_state = 54, .external_lex_state = 13}, - [2449] = {.lex_state = 54, .external_lex_state = 10}, - [2450] = {.lex_state = 54, .external_lex_state = 10}, - [2451] = {.lex_state = 54, .external_lex_state = 10}, - [2452] = {.lex_state = 54, .external_lex_state = 11}, - [2453] = {.lex_state = 54, .external_lex_state = 11}, - [2454] = {.lex_state = 54, .external_lex_state = 10}, - [2455] = {.lex_state = 54, .external_lex_state = 10}, - [2456] = {.lex_state = 54, .external_lex_state = 13}, - [2457] = {.lex_state = 54, .external_lex_state = 10}, - [2458] = {.lex_state = 54, .external_lex_state = 12}, - [2459] = {.lex_state = 54, .external_lex_state = 10}, - [2460] = {.lex_state = 54, .external_lex_state = 13}, - [2461] = {.lex_state = 54, .external_lex_state = 13}, - [2462] = {.lex_state = 54, .external_lex_state = 13}, - [2463] = {.lex_state = 54, .external_lex_state = 13}, - [2464] = {.lex_state = 54, .external_lex_state = 12}, - [2465] = {.lex_state = 54, .external_lex_state = 11}, - [2466] = {.lex_state = 54, .external_lex_state = 11}, - [2467] = {.lex_state = 54, .external_lex_state = 13}, - [2468] = {.lex_state = 54, .external_lex_state = 13}, - [2469] = {.lex_state = 54, .external_lex_state = 13}, + [2447] = {.lex_state = 54, .external_lex_state = 12}, + [2448] = {.lex_state = 54, .external_lex_state = 12}, + [2449] = {.lex_state = 54, .external_lex_state = 11}, + [2450] = {.lex_state = 54, .external_lex_state = 9}, + [2451] = {.lex_state = 54, .external_lex_state = 11}, + [2452] = {.lex_state = 54, .external_lex_state = 16}, + [2453] = {.lex_state = 54, .external_lex_state = 10}, + [2454] = {.lex_state = 54, .external_lex_state = 13}, + [2455] = {.lex_state = 33, .external_lex_state = 12}, + [2456] = {.lex_state = 54, .external_lex_state = 11}, + [2457] = {.lex_state = 54, .external_lex_state = 11}, + [2458] = {.lex_state = 34, .external_lex_state = 12}, + [2459] = {.lex_state = 54, .external_lex_state = 11}, + [2460] = {.lex_state = 3, .external_lex_state = 10}, + [2461] = {.lex_state = 54, .external_lex_state = 10}, + [2462] = {.lex_state = 3, .external_lex_state = 10}, + [2463] = {.lex_state = 54, .external_lex_state = 9}, + [2464] = {.lex_state = 54, .external_lex_state = 10}, + [2465] = {.lex_state = 3, .external_lex_state = 10}, + [2466] = {.lex_state = 54, .external_lex_state = 10}, + [2467] = {.lex_state = 54, .external_lex_state = 10}, + [2468] = {.lex_state = 54, .external_lex_state = 12}, + [2469] = {.lex_state = 54, .external_lex_state = 9}, [2470] = {.lex_state = 54, .external_lex_state = 11}, - [2471] = {.lex_state = 54, .external_lex_state = 13}, - [2472] = {.lex_state = 54, .external_lex_state = 13}, - [2473] = {.lex_state = 54, .external_lex_state = 13}, - [2474] = {.lex_state = 54, .external_lex_state = 12}, - [2475] = {.lex_state = 54, .external_lex_state = 11}, + [2471] = {.lex_state = 54, .external_lex_state = 9}, + [2472] = {.lex_state = 54, .external_lex_state = 11}, + [2473] = {.lex_state = 54, .external_lex_state = 10}, + [2474] = {.lex_state = 54, .external_lex_state = 11}, + [2475] = {.lex_state = 54, .external_lex_state = 9}, [2476] = {.lex_state = 54, .external_lex_state = 13}, - [2477] = {.lex_state = 54, .external_lex_state = 13}, - [2478] = {.lex_state = 54, .external_lex_state = 11}, - [2479] = {.lex_state = 54, .external_lex_state = 10}, - [2480] = {.lex_state = 54, .external_lex_state = 10}, - [2481] = {.lex_state = 29, .external_lex_state = 13}, + [2477] = {.lex_state = 54, .external_lex_state = 10}, + [2478] = {.lex_state = 54, .external_lex_state = 13}, + [2479] = {.lex_state = 54, .external_lex_state = 11}, + [2480] = {.lex_state = 54, .external_lex_state = 11}, + [2481] = {.lex_state = 54, .external_lex_state = 16}, [2482] = {.lex_state = 54, .external_lex_state = 11}, - [2483] = {.lex_state = 54, .external_lex_state = 10}, - [2484] = {.lex_state = 54, .external_lex_state = 13}, - [2485] = {.lex_state = 54, .external_lex_state = 13}, - [2486] = {.lex_state = 54, .external_lex_state = 13}, + [2483] = {.lex_state = 54, .external_lex_state = 11}, + [2484] = {.lex_state = 54, .external_lex_state = 11}, + [2485] = {.lex_state = 54, .external_lex_state = 11}, + [2486] = {.lex_state = 54, .external_lex_state = 11}, [2487] = {.lex_state = 54, .external_lex_state = 13}, - [2488] = {.lex_state = 54, .external_lex_state = 13}, - [2489] = {.lex_state = 54, .external_lex_state = 13}, - [2490] = {.lex_state = 54, .external_lex_state = 10}, - [2491] = {.lex_state = 54, .external_lex_state = 10}, - [2492] = {.lex_state = 54, .external_lex_state = 13}, - [2493] = {.lex_state = 54, .external_lex_state = 12}, - [2494] = {.lex_state = 54, .external_lex_state = 13}, + [2488] = {.lex_state = 54, .external_lex_state = 11}, + [2489] = {.lex_state = 54, .external_lex_state = 11}, + [2490] = {.lex_state = 54, .external_lex_state = 13}, + [2491] = {.lex_state = 54, .external_lex_state = 11}, + [2492] = {.lex_state = 54, .external_lex_state = 11}, + [2493] = {.lex_state = 54, .external_lex_state = 11}, + [2494] = {.lex_state = 54, .external_lex_state = 11}, [2495] = {.lex_state = 54, .external_lex_state = 13}, [2496] = {.lex_state = 54, .external_lex_state = 13}, - [2497] = {.lex_state = 54, .external_lex_state = 10}, - [2498] = {.lex_state = 54, .external_lex_state = 13}, - [2499] = {.lex_state = 54, .external_lex_state = 12}, - [2500] = {.lex_state = 54, .external_lex_state = 10}, - [2501] = {.lex_state = 29, .external_lex_state = 13}, + [2497] = {.lex_state = 54, .external_lex_state = 13}, + [2498] = {.lex_state = 54, .external_lex_state = 11}, + [2499] = {.lex_state = 54, .external_lex_state = 11}, + [2500] = {.lex_state = 54, .external_lex_state = 12}, + [2501] = {.lex_state = 54, .external_lex_state = 12}, [2502] = {.lex_state = 54, .external_lex_state = 13}, - [2503] = {.lex_state = 54, .external_lex_state = 13}, - [2504] = {.lex_state = 54, .external_lex_state = 11}, - [2505] = {.lex_state = 54, .external_lex_state = 12}, - [2506] = {.lex_state = 54, .external_lex_state = 13}, - [2507] = {.lex_state = 54, .external_lex_state = 13}, - [2508] = {.lex_state = 54, .external_lex_state = 11}, + [2503] = {.lex_state = 54, .external_lex_state = 16}, + [2504] = {.lex_state = 54, .external_lex_state = 10}, + [2505] = {.lex_state = 54, .external_lex_state = 13}, + [2506] = {.lex_state = 54, .external_lex_state = 11}, + [2507] = {.lex_state = 54, .external_lex_state = 12}, + [2508] = {.lex_state = 54, .external_lex_state = 9}, [2509] = {.lex_state = 54, .external_lex_state = 13}, - [2510] = {.lex_state = 54, .external_lex_state = 10}, - [2511] = {.lex_state = 54, .external_lex_state = 13}, - [2512] = {.lex_state = 54, .external_lex_state = 10}, - [2513] = {.lex_state = 54, .external_lex_state = 13}, - [2514] = {.lex_state = 54, .external_lex_state = 11}, + [2510] = {.lex_state = 54, .external_lex_state = 9}, + [2511] = {.lex_state = 54, .external_lex_state = 9}, + [2512] = {.lex_state = 33, .external_lex_state = 12}, + [2513] = {.lex_state = 54, .external_lex_state = 10}, + [2514] = {.lex_state = 54, .external_lex_state = 13}, [2515] = {.lex_state = 54, .external_lex_state = 11}, [2516] = {.lex_state = 54, .external_lex_state = 13}, - [2517] = {.lex_state = 29, .external_lex_state = 13}, - [2518] = {.lex_state = 54, .external_lex_state = 13}, - [2519] = {.lex_state = 54, .external_lex_state = 11}, - [2520] = {.lex_state = 29, .external_lex_state = 13}, - [2521] = {.lex_state = 54, .external_lex_state = 13}, - [2522] = {.lex_state = 54, .external_lex_state = 10}, - [2523] = {.lex_state = 54, .external_lex_state = 10}, + [2517] = {.lex_state = 54, .external_lex_state = 12}, + [2518] = {.lex_state = 54, .external_lex_state = 15}, + [2519] = {.lex_state = 54, .external_lex_state = 9}, + [2520] = {.lex_state = 54, .external_lex_state = 9}, + [2521] = {.lex_state = 54, .external_lex_state = 9}, + [2522] = {.lex_state = 54, .external_lex_state = 9}, + [2523] = {.lex_state = 54, .external_lex_state = 9}, [2524] = {.lex_state = 54, .external_lex_state = 13}, - [2525] = {.lex_state = 54, .external_lex_state = 13}, + [2525] = {.lex_state = 54, .external_lex_state = 9}, [2526] = {.lex_state = 54, .external_lex_state = 13}, - [2527] = {.lex_state = 54, .external_lex_state = 13}, - [2528] = {.lex_state = 54, .external_lex_state = 13}, - [2529] = {.lex_state = 54, .external_lex_state = 13}, - [2530] = {.lex_state = 54, .external_lex_state = 13}, - [2531] = {.lex_state = 54, .external_lex_state = 12}, - [2532] = {.lex_state = 54, .external_lex_state = 13}, - [2533] = {.lex_state = 54, .external_lex_state = 13}, - [2534] = {.lex_state = 29, .external_lex_state = 13}, - [2535] = {.lex_state = 54, .external_lex_state = 13}, - [2536] = {.lex_state = 54, .external_lex_state = 13}, - [2537] = {.lex_state = 54, .external_lex_state = 13}, - [2538] = {.lex_state = 54, .external_lex_state = 11}, - [2539] = {.lex_state = 54, .external_lex_state = 13}, + [2527] = {.lex_state = 54, .external_lex_state = 12}, + [2528] = {.lex_state = 54, .external_lex_state = 12}, + [2529] = {.lex_state = 54, .external_lex_state = 9}, + [2530] = {.lex_state = 54, .external_lex_state = 9}, + [2531] = {.lex_state = 54, .external_lex_state = 11}, + [2532] = {.lex_state = 54, .external_lex_state = 11}, + [2533] = {.lex_state = 54, .external_lex_state = 15}, + [2534] = {.lex_state = 54, .external_lex_state = 15}, + [2535] = {.lex_state = 54, .external_lex_state = 9}, + [2536] = {.lex_state = 54, .external_lex_state = 15}, + [2537] = {.lex_state = 54, .external_lex_state = 15}, + [2538] = {.lex_state = 54, .external_lex_state = 15}, + [2539] = {.lex_state = 54, .external_lex_state = 15}, [2540] = {.lex_state = 54, .external_lex_state = 13}, - [2541] = {.lex_state = 54, .external_lex_state = 11}, - [2542] = {.lex_state = 54, .external_lex_state = 11}, + [2541] = {.lex_state = 54, .external_lex_state = 15}, + [2542] = {.lex_state = 54, .external_lex_state = 15}, + [2543] = {.lex_state = 54, .external_lex_state = 11}, + [2544] = {.lex_state = 54, .external_lex_state = 15}, + [2545] = {.lex_state = 54, .external_lex_state = 11}, + [2546] = {.lex_state = 54, .external_lex_state = 15}, + [2547] = {.lex_state = 54, .external_lex_state = 10}, + [2548] = {.lex_state = 54, .external_lex_state = 10}, + [2549] = {.lex_state = 54, .external_lex_state = 10}, + [2550] = {.lex_state = 54, .external_lex_state = 15}, + [2551] = {.lex_state = 34, .external_lex_state = 12}, + [2552] = {.lex_state = 54, .external_lex_state = 15}, + [2553] = {.lex_state = 54, .external_lex_state = 15}, + [2554] = {.lex_state = 54, .external_lex_state = 15}, + [2555] = {.lex_state = 54, .external_lex_state = 13}, + [2556] = {.lex_state = 54, .external_lex_state = 11}, + [2557] = {.lex_state = 54, .external_lex_state = 11}, + [2558] = {.lex_state = 54, .external_lex_state = 12}, + [2559] = {.lex_state = 54, .external_lex_state = 15}, + [2560] = {.lex_state = 54, .external_lex_state = 11}, + [2561] = {.lex_state = 54, .external_lex_state = 13}, + [2562] = {.lex_state = 34, .external_lex_state = 12}, + [2563] = {.lex_state = 54, .external_lex_state = 11}, + [2564] = {.lex_state = 34, .external_lex_state = 12}, + [2565] = {.lex_state = 54, .external_lex_state = 9}, + [2566] = {.lex_state = 54, .external_lex_state = 12}, + [2567] = {.lex_state = 54, .external_lex_state = 12}, + [2568] = {.lex_state = 54, .external_lex_state = 9}, + [2569] = {.lex_state = 54, .external_lex_state = 9}, + [2570] = {.lex_state = 54, .external_lex_state = 12}, + [2571] = {.lex_state = 54, .external_lex_state = 12}, + [2572] = {.lex_state = 54, .external_lex_state = 11}, + [2573] = {.lex_state = 54, .external_lex_state = 11}, + [2574] = {.lex_state = 54, .external_lex_state = 10}, + [2575] = {.lex_state = 54, .external_lex_state = 12}, + [2576] = {.lex_state = 34, .external_lex_state = 12}, + [2577] = {.lex_state = 54, .external_lex_state = 12}, + [2578] = {.lex_state = 54, .external_lex_state = 15}, + [2579] = {.lex_state = 34, .external_lex_state = 12}, + [2580] = {.lex_state = 54, .external_lex_state = 12}, + [2581] = {.lex_state = 34, .external_lex_state = 12}, + [2582] = {.lex_state = 34, .external_lex_state = 12}, + [2583] = {.lex_state = 54, .external_lex_state = 12}, + [2584] = {.lex_state = 34, .external_lex_state = 12}, + [2585] = {.lex_state = 54, .external_lex_state = 9}, + [2586] = {.lex_state = 54, .external_lex_state = 12}, + [2587] = {.lex_state = 54, .external_lex_state = 11}, + [2588] = {.lex_state = 54, .external_lex_state = 12}, + [2589] = {.lex_state = 34, .external_lex_state = 12}, + [2590] = {.lex_state = 34, .external_lex_state = 12}, + [2591] = {.lex_state = 54, .external_lex_state = 12}, + [2592] = {.lex_state = 54, .external_lex_state = 12}, + [2593] = {.lex_state = 54, .external_lex_state = 12}, + [2594] = {.lex_state = 54, .external_lex_state = 9}, + [2595] = {.lex_state = 54, .external_lex_state = 11}, + [2596] = {.lex_state = 54, .external_lex_state = 12}, + [2597] = {.lex_state = 54, .external_lex_state = 11}, + [2598] = {.lex_state = 54, .external_lex_state = 9}, + [2599] = {.lex_state = 54, .external_lex_state = 12}, + [2600] = {.lex_state = 54, .external_lex_state = 9}, + [2601] = {.lex_state = 54, .external_lex_state = 13}, + [2602] = {.lex_state = 54, .external_lex_state = 13}, + [2603] = {.lex_state = 54, .external_lex_state = 11}, + [2604] = {.lex_state = 54, .external_lex_state = 11}, + [2605] = {.lex_state = 54, .external_lex_state = 9}, + [2606] = {.lex_state = 54, .external_lex_state = 10}, + [2607] = {.lex_state = 54, .external_lex_state = 12}, + [2608] = {.lex_state = 54, .external_lex_state = 12}, + [2609] = {.lex_state = 54, .external_lex_state = 15}, + [2610] = {.lex_state = 54, .external_lex_state = 9}, + [2611] = {.lex_state = 54, .external_lex_state = 12}, + [2612] = {.lex_state = 54, .external_lex_state = 12}, + [2613] = {.lex_state = 54, .external_lex_state = 12}, + [2614] = {.lex_state = 54, .external_lex_state = 12}, + [2615] = {.lex_state = 54, .external_lex_state = 12}, + [2616] = {.lex_state = 54, .external_lex_state = 13}, + [2617] = {.lex_state = 54, .external_lex_state = 13}, + [2618] = {.lex_state = 54, .external_lex_state = 12}, + [2619] = {.lex_state = 54, .external_lex_state = 13}, + [2620] = {.lex_state = 54, .external_lex_state = 11}, + [2621] = {.lex_state = 54, .external_lex_state = 12}, + [2622] = {.lex_state = 54, .external_lex_state = 10}, + [2623] = {.lex_state = 54, .external_lex_state = 12}, + [2624] = {.lex_state = 54, .external_lex_state = 12}, + [2625] = {.lex_state = 54, .external_lex_state = 12}, + [2626] = {.lex_state = 29, .external_lex_state = 12}, + [2627] = {.lex_state = 54, .external_lex_state = 12}, + [2628] = {.lex_state = 54, .external_lex_state = 11}, + [2629] = {.lex_state = 54, .external_lex_state = 12}, + [2630] = {.lex_state = 54, .external_lex_state = 13}, + [2631] = {.lex_state = 54, .external_lex_state = 10}, + [2632] = {.lex_state = 54, .external_lex_state = 11}, + [2633] = {.lex_state = 54, .external_lex_state = 12}, + [2634] = {.lex_state = 54, .external_lex_state = 10}, + [2635] = {.lex_state = 54, .external_lex_state = 12}, + [2636] = {.lex_state = 54, .external_lex_state = 10}, + [2637] = {.lex_state = 54, .external_lex_state = 11}, + [2638] = {.lex_state = 54, .external_lex_state = 12}, + [2639] = {.lex_state = 54, .external_lex_state = 12}, + [2640] = {.lex_state = 54, .external_lex_state = 11}, + [2641] = {.lex_state = 54, .external_lex_state = 13}, + [2642] = {.lex_state = 54, .external_lex_state = 10}, + [2643] = {.lex_state = 54, .external_lex_state = 10}, + [2644] = {.lex_state = 54, .external_lex_state = 10}, + [2645] = {.lex_state = 54, .external_lex_state = 10}, + [2646] = {.lex_state = 54, .external_lex_state = 10}, + [2647] = {.lex_state = 54, .external_lex_state = 11}, + [2648] = {.lex_state = 54, .external_lex_state = 10}, + [2649] = {.lex_state = 54, .external_lex_state = 10}, + [2650] = {.lex_state = 54, .external_lex_state = 13}, + [2651] = {.lex_state = 54, .external_lex_state = 11}, + [2652] = {.lex_state = 54, .external_lex_state = 10}, + [2653] = {.lex_state = 54, .external_lex_state = 10}, + [2654] = {.lex_state = 54, .external_lex_state = 12}, + [2655] = {.lex_state = 54, .external_lex_state = 13}, + [2656] = {.lex_state = 54, .external_lex_state = 10}, + [2657] = {.lex_state = 54, .external_lex_state = 12}, + [2658] = {.lex_state = 54, .external_lex_state = 12}, + [2659] = {.lex_state = 54, .external_lex_state = 13}, + [2660] = {.lex_state = 54, .external_lex_state = 13}, + [2661] = {.lex_state = 54, .external_lex_state = 12}, + [2662] = {.lex_state = 54, .external_lex_state = 10}, + [2663] = {.lex_state = 54, .external_lex_state = 12}, + [2664] = {.lex_state = 54, .external_lex_state = 12}, + [2665] = {.lex_state = 54, .external_lex_state = 11}, + [2666] = {.lex_state = 54, .external_lex_state = 12}, + [2667] = {.lex_state = 54, .external_lex_state = 12}, + [2668] = {.lex_state = 54, .external_lex_state = 12}, + [2669] = {.lex_state = 29, .external_lex_state = 12}, + [2670] = {.lex_state = 54, .external_lex_state = 12}, + [2671] = {.lex_state = 54, .external_lex_state = 12}, + [2672] = {.lex_state = 54, .external_lex_state = 12}, + [2673] = {.lex_state = 54, .external_lex_state = 10}, + [2674] = {.lex_state = 54, .external_lex_state = 12}, + [2675] = {.lex_state = 54, .external_lex_state = 10}, + [2676] = {.lex_state = 54, .external_lex_state = 13}, + [2677] = {.lex_state = 29, .external_lex_state = 12}, + [2678] = {.lex_state = 54, .external_lex_state = 10}, + [2679] = {.lex_state = 54, .external_lex_state = 13}, + [2680] = {.lex_state = 54, .external_lex_state = 12}, + [2681] = {.lex_state = 54, .external_lex_state = 12}, + [2682] = {.lex_state = 54, .external_lex_state = 12}, + [2683] = {.lex_state = 54, .external_lex_state = 11}, + [2684] = {.lex_state = 54, .external_lex_state = 11}, + [2685] = {.lex_state = 54, .external_lex_state = 12}, + [2686] = {.lex_state = 54, .external_lex_state = 12}, + [2687] = {.lex_state = 54, .external_lex_state = 12}, + [2688] = {.lex_state = 29, .external_lex_state = 12}, + [2689] = {.lex_state = 54, .external_lex_state = 11}, + [2690] = {.lex_state = 54, .external_lex_state = 10}, + [2691] = {.lex_state = 54, .external_lex_state = 11}, + [2692] = {.lex_state = 54, .external_lex_state = 11}, + [2693] = {.lex_state = 54, .external_lex_state = 12}, + [2694] = {.lex_state = 54, .external_lex_state = 13}, + [2695] = {.lex_state = 54, .external_lex_state = 11}, + [2696] = {.lex_state = 54, .external_lex_state = 10}, + [2697] = {.lex_state = 54, .external_lex_state = 12}, + [2698] = {.lex_state = 54, .external_lex_state = 12}, + [2699] = {.lex_state = 54, .external_lex_state = 11}, + [2700] = {.lex_state = 54, .external_lex_state = 10}, + [2701] = {.lex_state = 54, .external_lex_state = 10}, + [2702] = {.lex_state = 54, .external_lex_state = 12}, + [2703] = {.lex_state = 54, .external_lex_state = 12}, + [2704] = {.lex_state = 54, .external_lex_state = 12}, + [2705] = {.lex_state = 54, .external_lex_state = 10}, + [2706] = {.lex_state = 54, .external_lex_state = 13}, + [2707] = {.lex_state = 54, .external_lex_state = 11}, + [2708] = {.lex_state = 54, .external_lex_state = 11}, + [2709] = {.lex_state = 54, .external_lex_state = 12}, + [2710] = {.lex_state = 54, .external_lex_state = 12}, + [2711] = {.lex_state = 54, .external_lex_state = 12}, + [2712] = {.lex_state = 54, .external_lex_state = 12}, + [2713] = {.lex_state = 54, .external_lex_state = 12}, + [2714] = {.lex_state = 54, .external_lex_state = 12}, + [2715] = {.lex_state = 54, .external_lex_state = 12}, + [2716] = {.lex_state = 54, .external_lex_state = 12}, + [2717] = {.lex_state = 54, .external_lex_state = 10}, + [2718] = {.lex_state = 54, .external_lex_state = 12}, + [2719] = {.lex_state = 54, .external_lex_state = 12}, + [2720] = {.lex_state = 54, .external_lex_state = 12}, + [2721] = {.lex_state = 54, .external_lex_state = 12}, + [2722] = {.lex_state = 54, .external_lex_state = 12}, + [2723] = {.lex_state = 54, .external_lex_state = 12}, + [2724] = {.lex_state = 54, .external_lex_state = 10}, + [2725] = {.lex_state = 54, .external_lex_state = 12}, + [2726] = {.lex_state = 54, .external_lex_state = 12}, + [2727] = {.lex_state = 54, .external_lex_state = 12}, + [2728] = {.lex_state = 54, .external_lex_state = 10}, + [2729] = {.lex_state = 54, .external_lex_state = 13}, + [2730] = {.lex_state = 54, .external_lex_state = 12}, + [2731] = {.lex_state = 54, .external_lex_state = 11}, + [2732] = {.lex_state = 54, .external_lex_state = 12}, + [2733] = {.lex_state = 54, .external_lex_state = 12}, + [2734] = {.lex_state = 29, .external_lex_state = 12}, + [2735] = {.lex_state = 54, .external_lex_state = 12}, + [2736] = {.lex_state = 54, .external_lex_state = 10}, + [2737] = {.lex_state = 54, .external_lex_state = 10}, + [2738] = {.lex_state = 54, .external_lex_state = 12}, + [2739] = {.lex_state = 54, .external_lex_state = 12}, + [2740] = {.lex_state = 54, .external_lex_state = 10}, + [2741] = {.lex_state = 54, .external_lex_state = 13}, + [2742] = {.lex_state = 54, .external_lex_state = 12}, + [2743] = {.lex_state = 29, .external_lex_state = 12}, + [2744] = {.lex_state = 54, .external_lex_state = 11}, + [2745] = {.lex_state = 54, .external_lex_state = 12}, + [2746] = {.lex_state = 54, .external_lex_state = 10}, + [2747] = {.lex_state = 54, .external_lex_state = 12}, + [2748] = {.lex_state = 54, .external_lex_state = 10}, + [2749] = {.lex_state = 54, .external_lex_state = 12}, + [2750] = {.lex_state = 54, .external_lex_state = 12}, + [2751] = {.lex_state = 54, .external_lex_state = 11}, + [2752] = {.lex_state = 54, .external_lex_state = 10}, + [2753] = {.lex_state = 54, .external_lex_state = 11}, + [2754] = {.lex_state = 54, .external_lex_state = 13}, + [2755] = {.lex_state = 54, .external_lex_state = 12}, + [2756] = {.lex_state = 54, .external_lex_state = 12}, + [2757] = {.lex_state = 54, .external_lex_state = 10}, + [2758] = {.lex_state = 54, .external_lex_state = 11}, + [2759] = {.lex_state = 54, .external_lex_state = 11}, + [2760] = {.lex_state = 54, .external_lex_state = 11}, + [2761] = {.lex_state = 54, .external_lex_state = 11}, + [2762] = {.lex_state = 54, .external_lex_state = 12}, + [2763] = {.lex_state = 54, .external_lex_state = 12}, + [2764] = {.lex_state = 54, .external_lex_state = 12}, + [2765] = {.lex_state = 54, .external_lex_state = 11}, + [2766] = {.lex_state = 54, .external_lex_state = 12}, + [2767] = {.lex_state = 54, .external_lex_state = 12}, + [2768] = {.lex_state = 54, .external_lex_state = 12}, + [2769] = {.lex_state = 54, .external_lex_state = 12}, + [2770] = {.lex_state = 54, .external_lex_state = 12}, + [2771] = {.lex_state = 54, .external_lex_state = 12}, + [2772] = {.lex_state = 54, .external_lex_state = 12}, + [2773] = {.lex_state = 54, .external_lex_state = 12}, + [2774] = {.lex_state = 54, .external_lex_state = 12}, + [2775] = {.lex_state = 54, .external_lex_state = 11}, + [2776] = {.lex_state = 54, .external_lex_state = 12}, + [2777] = {.lex_state = 54, .external_lex_state = 13}, + [2778] = {.lex_state = 54, .external_lex_state = 13}, + [2779] = {.lex_state = 54, .external_lex_state = 10}, + [2780] = {.lex_state = 54, .external_lex_state = 10}, + [2781] = {.lex_state = 54, .external_lex_state = 10}, + [2782] = {.lex_state = 54, .external_lex_state = 12}, + [2783] = {.lex_state = 54, .external_lex_state = 12}, + [2784] = {.lex_state = 29, .external_lex_state = 12}, + [2785] = {.lex_state = 54, .external_lex_state = 12}, + [2786] = {.lex_state = 54, .external_lex_state = 10}, + [2787] = {.lex_state = 54, .external_lex_state = 13}, + [2788] = {.lex_state = 54, .external_lex_state = 11}, + [2789] = {.lex_state = 54, .external_lex_state = 12}, + [2790] = {.lex_state = 54, .external_lex_state = 13}, + [2791] = {.lex_state = 54, .external_lex_state = 12}, + [2792] = {.lex_state = 54, .external_lex_state = 13}, + [2793] = {.lex_state = 54, .external_lex_state = 12}, + [2794] = {.lex_state = 54, .external_lex_state = 12}, + [2795] = {.lex_state = 29, .external_lex_state = 12}, + [2796] = {.lex_state = 54, .external_lex_state = 12}, + [2797] = {.lex_state = 54, .external_lex_state = 11}, + [2798] = {.lex_state = 54, .external_lex_state = 12}, + [2799] = {.lex_state = 54, .external_lex_state = 12}, + [2800] = {.lex_state = 54, .external_lex_state = 12}, + [2801] = {.lex_state = 54, .external_lex_state = 12}, + [2802] = {.lex_state = 54, .external_lex_state = 12}, + [2803] = {.lex_state = 54, .external_lex_state = 12}, + [2804] = {.lex_state = 54, .external_lex_state = 12}, + [2805] = {.lex_state = 54, .external_lex_state = 10}, + [2806] = {.lex_state = 54, .external_lex_state = 10}, + [2807] = {.lex_state = 54, .external_lex_state = 11}, + [2808] = {.lex_state = 54, .external_lex_state = 12}, + [2809] = {.lex_state = 54, .external_lex_state = 12}, + [2810] = {.lex_state = 54, .external_lex_state = 10}, + [2811] = {.lex_state = 54, .external_lex_state = 12}, + [2812] = {.lex_state = 54, .external_lex_state = 12}, + [2813] = {.lex_state = 54, .external_lex_state = 12}, + [2814] = {.lex_state = 54, .external_lex_state = 11}, + [2815] = {.lex_state = 54, .external_lex_state = 12}, + [2816] = {.lex_state = 54, .external_lex_state = 12}, + [2817] = {.lex_state = 54, .external_lex_state = 13}, + [2818] = {.lex_state = 54, .external_lex_state = 11}, }; enum { @@ -12259,10 +12842,10 @@ static const bool ts_external_scanner_states[17][EXTERNAL_TOKEN_COUNT] = { }, [12] = { [ts_external_token_comment] = true, - [ts_external_token_RBRACK] = true, }, [13] = { [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, }, [14] = { [ts_external_token__string_content] = true, @@ -12332,15 +12915,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), [anon_sym_not] = ACTIONS(1), [anon_sym_and] = ACTIONS(1), [anon_sym_or] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_SLASH_SLASH] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), [anon_sym_AMP] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), @@ -12369,8 +12955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), [sym_ellipsis] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym__not_escape_sequence] = ACTIONS(1), [sym_type_conversion] = ACTIONS(1), @@ -12391,72 +12975,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [1] = { - [sym_module] = STATE(2521), - [sym__statement] = STATE(71), - [sym__simple_statements] = STATE(71), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_if_statement] = STATE(71), - [sym_match_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_with_statement] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_class_definition] = STATE(71), - [sym_decorated_definition] = STATE(71), - [sym_decorator] = STATE(1740), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(71), - [aux_sym_decorated_definition_repeat1] = STATE(1740), + [sym_module] = STATE(2798), + [sym__statement] = STATE(66), + [sym__simple_statements] = STATE(66), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_if_statement] = STATE(66), + [sym_match_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_with_statement] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_class_definition] = STATE(66), + [sym_decorated_definition] = STATE(66), + [sym_decorator] = STATE(1821), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(66), + [aux_sym_decorated_definition_repeat1] = STATE(1821), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -12486,16 +13070,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -12505,72 +13089,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [2] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2291), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(657), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12599,16 +13183,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -12619,136 +13203,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [3] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(660), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1741), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), - [sym_string_start] = ACTIONS(81), - }, - [4] = { [sym__statement] = STATE(65), [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(65), [sym_match_statement] = STATE(65), [sym_for_statement] = STATE(65), @@ -12756,49 +13226,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(65), [sym_with_statement] = STATE(65), [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(65), [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(661), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(1820), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12827,92 +13297,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, - [5] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(670), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [4] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(776), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12941,92 +13411,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [6] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(833), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [5] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13055,92 +13525,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [7] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(832), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [6] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13169,92 +13639,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [8] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(829), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [7] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13283,92 +13753,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [9] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(719), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [8] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(825), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13397,92 +13867,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [10] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [9] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2553), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13511,16 +13981,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -13530,23 +14000,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, - [11] = { + [10] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -13554,49 +14024,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(715), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(763), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13625,92 +14095,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [12] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(688), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [11] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(796), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13739,42 +14209,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [13] = { + [12] = { [sym__statement] = STATE(69), [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(69), [sym_match_statement] = STATE(69), [sym_for_statement] = STATE(69), @@ -13782,49 +14252,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(69), [sym_with_statement] = STATE(69), [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(69), [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(695), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13853,92 +14323,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(111), + [sym_string_start] = ACTIONS(81), + }, + [13] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(646), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1816), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, [14] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(794), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(65), + [sym_match_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_with_statement] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(1840), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13967,42 +14551,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [15] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -14010,49 +14594,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(837), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(761), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14081,92 +14665,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [16] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14195,92 +14779,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [17] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(723), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14309,42 +14893,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [18] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -14352,49 +14936,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(813), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(697), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14423,42 +15007,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [19] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -14466,49 +15050,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(843), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(767), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14537,92 +15121,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [20] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(823), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(799), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14651,92 +15235,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [21] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(742), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(648), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14765,42 +15349,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [22] = { [sym__statement] = STATE(72), [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(72), [sym_match_statement] = STATE(72), [sym_for_statement] = STATE(72), @@ -14808,49 +15392,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(72), [sym_with_statement] = STATE(72), [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(72), [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(730), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(644), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14879,92 +15463,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, [23] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(733), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(780), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14993,42 +15577,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [24] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -15036,49 +15620,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(614), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(608), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15107,92 +15691,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [25] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(679), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(783), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15221,92 +15805,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [26] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(807), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15335,92 +15919,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [27] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2559), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15449,16 +16033,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -15469,72 +16053,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [28] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(712), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(820), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15563,92 +16147,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [29] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(763), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(789), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15677,42 +16261,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [30] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -15720,49 +16304,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(759), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(716), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15791,92 +16375,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [31] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(1738), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(692), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15905,92 +16489,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [32] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(765), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(823), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16019,92 +16603,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [33] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2541), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16133,16 +16717,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -16153,72 +16737,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [34] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(779), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(809), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16247,42 +16831,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [35] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -16290,49 +16874,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(802), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(818), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16361,92 +16945,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [36] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(805), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(656), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16475,92 +17059,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, [37] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(809), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(704), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16589,92 +17173,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [38] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(650), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16703,92 +17287,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(111), [sym_string_start] = ACTIONS(81), }, [39] = { - [sym__statement] = STATE(72), - [sym__simple_statements] = STATE(72), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(72), - [sym_match_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_with_statement] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(72), - [sym_decorated_definition] = STATE(72), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(622), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(72), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2537), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16817,16 +17401,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -16839,20 +17423,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [40] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -16860,49 +17444,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(724), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(732), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16931,92 +17515,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [41] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2263), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2536), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17045,42 +17629,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [42] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17088,49 +17672,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(707), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(803), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17159,42 +17743,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [43] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17202,49 +17786,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(731), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17273,92 +17857,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, [44] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2284), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(778), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17387,92 +17971,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [45] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(683), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(63), + [sym_match_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_with_statement] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(2533), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17501,156 +18085,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(109), [sym_string_start] = ACTIONS(81), }, [46] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2265), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), - [sym_string_start] = ACTIONS(81), - }, - [47] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -17658,49 +18128,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(756), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17729,92 +18199,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [48] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(685), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [47] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(829), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17843,92 +18313,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [49] = { - [sym__statement] = STATE(74), - [sym__simple_statements] = STATE(74), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(74), - [sym_match_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_with_statement] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(74), - [sym_decorated_definition] = STATE(74), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(673), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(74), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [48] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(727), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17957,16 +18427,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -17976,73 +18446,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [50] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(796), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [49] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(660), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18071,92 +18541,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [51] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2273), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [50] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18185,92 +18655,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [52] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(745), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [51] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(703), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18299,92 +18769,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [53] = { - [sym__statement] = STATE(70), - [sym__simple_statements] = STATE(70), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(70), - [sym_match_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_with_statement] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(70), - [sym_decorated_definition] = STATE(70), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(669), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(70), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [52] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(679), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18413,16 +18883,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -18432,73 +18902,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(115), [sym_string_start] = ACTIONS(81), }, - [54] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2272), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [53] = { + [sym__statement] = STATE(62), + [sym__simple_statements] = STATE(62), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(62), + [sym_match_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_with_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(62), + [sym_decorated_definition] = STATE(62), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(686), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(62), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18527,92 +18997,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(113), [sym_string_start] = ACTIONS(81), }, - [55] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(757), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [54] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(835), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18641,92 +19111,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [56] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(738), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [55] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(706), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18755,92 +19225,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [57] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2286), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [56] = { + [sym__statement] = STATE(67), + [sym__simple_statements] = STATE(67), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(67), + [sym_match_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_with_statement] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(67), + [sym_decorated_definition] = STATE(67), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(698), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(67), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18869,42 +19339,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [58] = { + [57] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -18912,49 +19382,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(749), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18983,42 +19453,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [59] = { + [58] = { [sym__statement] = STATE(67), [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), [sym_if_statement] = STATE(67), [sym_match_statement] = STATE(67), [sym_for_statement] = STATE(67), @@ -19026,49 +19496,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_statement] = STATE(67), [sym_with_statement] = STATE(67), [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), [sym_class_definition] = STATE(67), [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(753), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(839), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19097,92 +19567,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(107), [sym_string_start] = ACTIONS(81), }, - [60] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(1744), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [59] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(713), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19211,92 +19681,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(113), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [61] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(815), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [60] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(841), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19325,92 +19795,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [62] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(701), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [61] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1816), + [sym_block] = STATE(842), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19439,205 +19909,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), - [sym_string_start] = ACTIONS(81), - }, - [63] = { - [sym__statement] = STATE(73), - [sym__simple_statements] = STATE(73), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(73), - [sym_match_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_with_statement] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(73), - [sym_decorated_definition] = STATE(73), - [sym_decorator] = STATE(1741), - [sym_block] = STATE(2279), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(73), - [aux_sym_decorated_definition_repeat1] = STATE(1741), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(99), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [64] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [62] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19666,16 +20022,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -19685,72 +20041,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(117), [sym_string_start] = ACTIONS(81), }, - [65] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [63] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -19779,16 +20135,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -19798,72 +20154,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(119), [sym_string_start] = ACTIONS(81), }, - [66] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [64] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(121), [anon_sym_import] = ACTIONS(124), [anon_sym_from] = ACTIONS(127), @@ -19892,16 +20248,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(199), [anon_sym_AT] = ACTIONS(202), - [anon_sym_not] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(208), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), [sym_integer] = ACTIONS(223), - [sym_float] = ACTIONS(217), + [sym_float] = ACTIONS(220), [anon_sym_await] = ACTIONS(226), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), @@ -19911,72 +20267,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(229), [sym_string_start] = ACTIONS(231), }, - [67] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [65] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20005,16 +20361,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -20024,185 +20380,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(234), [sym_string_start] = ACTIONS(81), }, - [68] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1740), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(121), - [anon_sym_import] = ACTIONS(124), - [anon_sym_from] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(130), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_print] = ACTIONS(136), - [anon_sym_assert] = ACTIONS(139), - [anon_sym_return] = ACTIONS(142), - [anon_sym_del] = ACTIONS(145), - [anon_sym_raise] = ACTIONS(148), - [anon_sym_pass] = ACTIONS(151), - [anon_sym_break] = ACTIONS(154), - [anon_sym_continue] = ACTIONS(157), - [anon_sym_if] = ACTIONS(236), - [anon_sym_match] = ACTIONS(239), - [anon_sym_async] = ACTIONS(242), - [anon_sym_for] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_try] = ACTIONS(251), - [anon_sym_with] = ACTIONS(254), - [anon_sym_def] = ACTIONS(257), - [anon_sym_global] = ACTIONS(184), - [anon_sym_nonlocal] = ACTIONS(187), - [anon_sym_exec] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_class] = ACTIONS(260), - [anon_sym_LBRACK] = ACTIONS(199), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_not] = ACTIONS(205), - [anon_sym_PLUS] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(208), - [anon_sym_TILDE] = ACTIONS(208), - [anon_sym_lambda] = ACTIONS(211), - [anon_sym_yield] = ACTIONS(214), - [sym_ellipsis] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(220), - [sym_integer] = ACTIONS(223), - [sym_float] = ACTIONS(217), - [anon_sym_await] = ACTIONS(226), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_none] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(231), - }, - [69] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [66] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1821), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1821), + [ts_builtin_sym_end] = ACTIONS(236), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20216,106 +20460,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(83), - [anon_sym_match] = ACTIONS(85), - [anon_sym_async] = ACTIONS(87), - [anon_sym_for] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_with] = ACTIONS(95), - [anon_sym_def] = ACTIONS(97), + [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(99), + [anon_sym_class] = ACTIONS(59), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(263), [sym_string_start] = ACTIONS(81), }, - [70] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [67] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20344,92 +20587,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(265), + [sym__dedent] = ACTIONS(238), [sym_string_start] = ACTIONS(81), }, - [71] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1740), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(267), + [68] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20443,105 +20685,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(240), [sym_string_start] = ACTIONS(81), }, - [72] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [69] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20570,91 +20813,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(269), + [sym__dedent] = ACTIONS(242), [sym_string_start] = ACTIONS(81), }, - [73] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [70] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20683,91 +20926,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(271), + [sym__dedent] = ACTIONS(244), [sym_string_start] = ACTIONS(81), }, - [74] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1741), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1741), + [71] = { + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1821), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1821), + [ts_builtin_sym_end] = ACTIONS(229), + [sym_identifier] = ACTIONS(121), + [anon_sym_import] = ACTIONS(124), + [anon_sym_from] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(130), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_print] = ACTIONS(136), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_return] = ACTIONS(142), + [anon_sym_del] = ACTIONS(145), + [anon_sym_raise] = ACTIONS(148), + [anon_sym_pass] = ACTIONS(151), + [anon_sym_break] = ACTIONS(154), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_if] = ACTIONS(246), + [anon_sym_match] = ACTIONS(249), + [anon_sym_async] = ACTIONS(252), + [anon_sym_for] = ACTIONS(255), + [anon_sym_while] = ACTIONS(258), + [anon_sym_try] = ACTIONS(261), + [anon_sym_with] = ACTIONS(264), + [anon_sym_def] = ACTIONS(267), + [anon_sym_global] = ACTIONS(184), + [anon_sym_nonlocal] = ACTIONS(187), + [anon_sym_exec] = ACTIONS(190), + [anon_sym_type] = ACTIONS(193), + [anon_sym_class] = ACTIONS(270), + [anon_sym_LBRACK] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(202), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_not] = ACTIONS(211), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_lambda] = ACTIONS(214), + [anon_sym_yield] = ACTIONS(217), + [sym_ellipsis] = ACTIONS(220), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(220), + [anon_sym_await] = ACTIONS(226), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_none] = ACTIONS(223), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(231), + }, + [72] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_if_statement] = STATE(64), + [sym_match_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_with_statement] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1816), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1816), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20796,16 +21152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -20815,41 +21171,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dedent] = ACTIONS(273), [sym_string_start] = ACTIONS(81), }, - [75] = { - [sym_named_expression] = STATE(1677), - [sym__named_expression_lhs] = STATE(2520), - [sym_list_splat_pattern] = STATE(1324), - [sym_as_pattern] = STATE(1677), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1677), - [sym_boolean_operator] = STATE(1677), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_comparison_operator] = STATE(1677), - [sym_lambda] = STATE(1677), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_type] = STATE(2004), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_conditional_expression] = STATE(1677), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [73] = { + [sym_named_expression] = STATE(1728), + [sym__named_expression_lhs] = STATE(2677), + [sym_list_splat_pattern] = STATE(1323), + [sym_as_pattern] = STATE(1728), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1008), + [sym_not_operator] = STATE(1728), + [sym_boolean_operator] = STATE(1728), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_comparison_operator] = STATE(1728), + [sym_lambda] = STATE(1728), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_type] = STATE(2172), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_conditional_expression] = STATE(1728), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -20871,19 +21227,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_DASH] = ACTIONS(307), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -20892,24 +21249,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(322), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), @@ -20919,41 +21275,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(324), }, - [76] = { - [sym_named_expression] = STATE(1677), - [sym__named_expression_lhs] = STATE(2520), - [sym_list_splat_pattern] = STATE(1324), - [sym_as_pattern] = STATE(1677), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1677), - [sym_boolean_operator] = STATE(1677), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_comparison_operator] = STATE(1677), - [sym_lambda] = STATE(1677), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_type] = STATE(2004), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_conditional_expression] = STATE(1677), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [74] = { + [sym_named_expression] = STATE(1728), + [sym__named_expression_lhs] = STATE(2677), + [sym_list_splat_pattern] = STATE(1323), + [sym_as_pattern] = STATE(1728), + [sym_expression] = STATE(1780), + [sym_primary_expression] = STATE(1008), + [sym_not_operator] = STATE(1728), + [sym_boolean_operator] = STATE(1728), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_comparison_operator] = STATE(1728), + [sym_lambda] = STATE(1728), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_type] = STATE(2172), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_conditional_expression] = STATE(1728), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -20975,19 +21331,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(301), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_not] = ACTIONS(309), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_DASH] = ACTIONS(307), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -20996,24 +21353,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(322), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), @@ -21023,65 +21379,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(324), }, - [77] = { - [sym__simple_statements] = STATE(830), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [75] = { + [sym__simple_statements] = STATE(814), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21103,16 +21459,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21123,65 +21479,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(351), [sym_string_start] = ACTIONS(81), }, - [78] = { - [sym__simple_statements] = STATE(756), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [76] = { + [sym__simple_statements] = STATE(760), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21203,16 +21559,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21223,65 +21579,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(355), [sym_string_start] = ACTIONS(81), }, - [79] = { - [sym__simple_statements] = STATE(731), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [77] = { + [sym__simple_statements] = STATE(808), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21303,16 +21659,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21323,65 +21679,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(359), [sym_string_start] = ACTIONS(81), }, - [80] = { - [sym__simple_statements] = STATE(848), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [78] = { + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21403,16 +21759,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21423,65 +21779,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(363), [sym_string_start] = ACTIONS(81), }, - [81] = { - [sym__simple_statements] = STATE(799), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [79] = { + [sym__simple_statements] = STATE(729), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21503,16 +21859,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21523,65 +21879,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(367), [sym_string_start] = ACTIONS(81), }, - [82] = { - [sym__simple_statements] = STATE(792), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [80] = { + [sym__simple_statements] = STATE(764), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21603,16 +21959,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21623,65 +21979,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(371), [sym_string_start] = ACTIONS(81), }, - [83] = { - [sym__simple_statements] = STATE(772), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [81] = { + [sym__simple_statements] = STATE(786), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21703,16 +22059,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21723,65 +22079,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(375), [sym_string_start] = ACTIONS(81), }, - [84] = { - [sym__simple_statements] = STATE(739), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(630), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1634), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(631), - [sym_subscript] = STATE(631), - [sym_call] = STATE(1055), - [sym_type] = STATE(1970), - [sym_splat_type] = STATE(1948), - [sym_generic_type] = STATE(1948), - [sym_union_type] = STATE(1948), - [sym_constrained_type] = STATE(1948), - [sym_member_type] = STATE(1948), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [82] = { + [sym__simple_statements] = STATE(797), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(634), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1700), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(633), + [sym_subscript] = STATE(633), + [sym_call] = STATE(1077), + [sym_type] = STATE(2074), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(329), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21803,16 +22159,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(341), [anon_sym_type] = ACTIONS(343), [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(347), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21823,36 +22179,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(379), [sym_string_start] = ACTIONS(81), }, - [85] = { - [sym_chevron] = STATE(2016), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_list_splat_pattern] = STATE(1118), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(976), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [83] = { + [sym_chevron] = STATE(2211), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_list_splat_pattern] = STATE(1125), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(969), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(381), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -21864,7 +22220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(391), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), + [anon_sym_COLON] = ACTIONS(326), [anon_sym_match] = ACTIONS(389), [anon_sym_async] = ACTIONS(389), [anon_sym_in] = ACTIONS(279), @@ -21874,19 +22230,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(395), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_not] = ACTIONS(401), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -21895,24 +22252,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(404), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -21922,36 +22278,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [86] = { - [sym_chevron] = STATE(2016), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_list_splat_pattern] = STATE(1118), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1751), - [sym_primary_expression] = STATE(976), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [84] = { + [sym_chevron] = STATE(2211), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_list_splat_pattern] = STATE(1125), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1830), + [sym_primary_expression] = STATE(969), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(381), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -21963,7 +22319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(391), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(326), + [anon_sym_COLON] = ACTIONS(294), [anon_sym_match] = ACTIONS(389), [anon_sym_async] = ACTIONS(389), [anon_sym_in] = ACTIONS(279), @@ -21973,19 +22329,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(395), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_not] = ACTIONS(401), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_DASH] = ACTIONS(401), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -21994,24 +22351,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(404), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22021,35 +22377,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [87] = { - [sym_named_expression] = STATE(1677), - [sym__named_expression_lhs] = STATE(2520), - [sym_list_splat_pattern] = STATE(1324), - [sym_as_pattern] = STATE(1677), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1677), - [sym_boolean_operator] = STATE(1677), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_comparison_operator] = STATE(1677), - [sym_lambda] = STATE(1677), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_conditional_expression] = STATE(1677), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [85] = { + [sym_named_expression] = STATE(1728), + [sym__named_expression_lhs] = STATE(2677), + [sym_list_splat_pattern] = STATE(1323), + [sym_as_pattern] = STATE(1728), + [sym_expression] = STATE(1888), + [sym_primary_expression] = STATE(1008), + [sym_not_operator] = STATE(1728), + [sym_boolean_operator] = STATE(1728), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_comparison_operator] = STATE(1728), + [sym_lambda] = STATE(1728), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_conditional_expression] = STATE(1728), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(406), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -22071,19 +22427,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(412), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_not] = ACTIONS(416), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -22092,24 +22449,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(322), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), @@ -22119,35 +22475,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(324), }, - [88] = { - [sym_named_expression] = STATE(1677), - [sym__named_expression_lhs] = STATE(2520), - [sym_list_splat_pattern] = STATE(1324), - [sym_as_pattern] = STATE(1677), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1048), - [sym_not_operator] = STATE(1677), - [sym_boolean_operator] = STATE(1677), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_comparison_operator] = STATE(1677), - [sym_lambda] = STATE(1677), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_conditional_expression] = STATE(1677), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [86] = { + [sym_named_expression] = STATE(1728), + [sym__named_expression_lhs] = STATE(2677), + [sym_list_splat_pattern] = STATE(1323), + [sym_as_pattern] = STATE(1728), + [sym_expression] = STATE(1885), + [sym_primary_expression] = STATE(1008), + [sym_not_operator] = STATE(1728), + [sym_boolean_operator] = STATE(1728), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_comparison_operator] = STATE(1728), + [sym_lambda] = STATE(1728), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_conditional_expression] = STATE(1728), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(406), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), @@ -22169,19 +22525,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(294), [anon_sym_LBRACK] = ACTIONS(412), [anon_sym_AT] = ACTIONS(279), - [anon_sym_not] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_not] = ACTIONS(416), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -22190,24 +22547,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_lambda] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_lambda] = ACTIONS(314), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), + [sym_float] = ACTIONS(318), [anon_sym_await] = ACTIONS(322), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), @@ -22217,59 +22573,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(324), }, - [89] = { - [sym__simple_statements] = STATE(2287), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [87] = { + [sym__simple_statements] = STATE(658), + [sym_import_statement] = STATE(2471), + [sym_future_import_statement] = STATE(2471), + [sym_import_from_statement] = STATE(2471), + [sym_print_statement] = STATE(2471), + [sym_assert_statement] = STATE(2471), + [sym_expression_statement] = STATE(2471), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2471), + [sym_delete_statement] = STATE(2471), + [sym_raise_statement] = STATE(2471), + [sym_pass_statement] = STATE(2471), + [sym_break_statement] = STATE(2471), + [sym_continue_statement] = STATE(2471), + [sym_global_statement] = STATE(2471), + [sym_nonlocal_statement] = STATE(2471), + [sym_exec_statement] = STATE(2471), + [sym_type_alias_statement] = STATE(2471), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22290,16 +22646,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22310,59 +22666,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(422), [sym_string_start] = ACTIONS(81), }, - [90] = { - [sym__simple_statements] = STATE(1782), - [sym_import_statement] = STATE(2036), - [sym_future_import_statement] = STATE(2036), - [sym_import_from_statement] = STATE(2036), - [sym_print_statement] = STATE(2036), - [sym_assert_statement] = STATE(2036), - [sym_expression_statement] = STATE(2036), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2036), - [sym_delete_statement] = STATE(2036), - [sym_raise_statement] = STATE(2036), - [sym_pass_statement] = STATE(2036), - [sym_break_statement] = STATE(2036), - [sym_continue_statement] = STATE(2036), - [sym_global_statement] = STATE(2036), - [sym_nonlocal_statement] = STATE(2036), - [sym_exec_statement] = STATE(2036), - [sym_type_alias_statement] = STATE(2036), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [88] = { + [sym__simple_statements] = STATE(738), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22383,16 +22739,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22403,59 +22759,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(426), [sym_string_start] = ACTIONS(81), }, - [91] = { - [sym__simple_statements] = STATE(803), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [89] = { + [sym__simple_statements] = STATE(710), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22476,16 +22832,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22496,59 +22852,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(430), [sym_string_start] = ACTIONS(81), }, - [92] = { - [sym__simple_statements] = STATE(800), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [90] = { + [sym__simple_statements] = STATE(606), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22569,16 +22925,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22589,59 +22945,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(434), [sym_string_start] = ACTIONS(81), }, - [93] = { - [sym__simple_statements] = STATE(842), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [91] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22662,16 +23018,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22682,59 +23038,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(438), [sym_string_start] = ACTIONS(81), }, - [94] = { - [sym__simple_statements] = STATE(838), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [92] = { + [sym__simple_statements] = STATE(742), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22755,16 +23111,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22775,59 +23131,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(442), [sym_string_start] = ACTIONS(81), }, - [95] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [93] = { + [sym__simple_statements] = STATE(838), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22848,16 +23204,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22868,59 +23224,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(446), [sym_string_start] = ACTIONS(81), }, - [96] = { - [sym__simple_statements] = STATE(621), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [94] = { + [sym__simple_statements] = STATE(746), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22941,16 +23297,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -22961,59 +23317,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(450), [sym_string_start] = ACTIONS(81), }, - [97] = { - [sym__simple_statements] = STATE(652), - [sym_import_statement] = STATE(2110), - [sym_future_import_statement] = STATE(2110), - [sym_import_from_statement] = STATE(2110), - [sym_print_statement] = STATE(2110), - [sym_assert_statement] = STATE(2110), - [sym_expression_statement] = STATE(2110), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2110), - [sym_delete_statement] = STATE(2110), - [sym_raise_statement] = STATE(2110), - [sym_pass_statement] = STATE(2110), - [sym_break_statement] = STATE(2110), - [sym_continue_statement] = STATE(2110), - [sym_global_statement] = STATE(2110), - [sym_nonlocal_statement] = STATE(2110), - [sym_exec_statement] = STATE(2110), - [sym_type_alias_statement] = STATE(2110), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [95] = { + [sym__simple_statements] = STATE(614), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23034,16 +23390,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23054,59 +23410,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(454), [sym_string_start] = ACTIONS(81), }, - [98] = { - [sym__simple_statements] = STATE(716), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [96] = { + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23127,16 +23483,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23147,59 +23503,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(458), [sym_string_start] = ACTIONS(81), }, - [99] = { - [sym__simple_statements] = STATE(841), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [97] = { + [sym__simple_statements] = STATE(700), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23220,16 +23576,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23240,59 +23596,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(462), [sym_string_start] = ACTIONS(81), }, - [100] = { - [sym__simple_statements] = STATE(850), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [98] = { + [sym__simple_statements] = STATE(695), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23313,16 +23669,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23333,59 +23689,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(466), [sym_string_start] = ACTIONS(81), }, - [101] = { - [sym__simple_statements] = STATE(2285), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [99] = { + [sym__simple_statements] = STATE(680), + [sym_import_statement] = STATE(2355), + [sym_future_import_statement] = STATE(2355), + [sym_import_from_statement] = STATE(2355), + [sym_print_statement] = STATE(2355), + [sym_assert_statement] = STATE(2355), + [sym_expression_statement] = STATE(2355), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2355), + [sym_delete_statement] = STATE(2355), + [sym_raise_statement] = STATE(2355), + [sym_pass_statement] = STATE(2355), + [sym_break_statement] = STATE(2355), + [sym_continue_statement] = STATE(2355), + [sym_global_statement] = STATE(2355), + [sym_nonlocal_statement] = STATE(2355), + [sym_exec_statement] = STATE(2355), + [sym_type_alias_statement] = STATE(2355), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23406,16 +23762,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23426,59 +23782,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(470), [sym_string_start] = ACTIONS(81), }, - [102] = { - [sym__simple_statements] = STATE(783), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [100] = { + [sym__simple_statements] = STATE(711), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23499,16 +23855,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23519,59 +23875,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(474), [sym_string_start] = ACTIONS(81), }, - [103] = { - [sym__simple_statements] = STATE(1735), - [sym_import_statement] = STATE(2036), - [sym_future_import_statement] = STATE(2036), - [sym_import_from_statement] = STATE(2036), - [sym_print_statement] = STATE(2036), - [sym_assert_statement] = STATE(2036), - [sym_expression_statement] = STATE(2036), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2036), - [sym_delete_statement] = STATE(2036), - [sym_raise_statement] = STATE(2036), - [sym_pass_statement] = STATE(2036), - [sym_break_statement] = STATE(2036), - [sym_continue_statement] = STATE(2036), - [sym_global_statement] = STATE(2036), - [sym_nonlocal_statement] = STATE(2036), - [sym_exec_statement] = STATE(2036), - [sym_type_alias_statement] = STATE(2036), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [101] = { + [sym__simple_statements] = STATE(827), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23592,16 +23948,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23612,59 +23968,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(478), [sym_string_start] = ACTIONS(81), }, - [104] = { - [sym__simple_statements] = STATE(654), - [sym_import_statement] = STATE(2110), - [sym_future_import_statement] = STATE(2110), - [sym_import_from_statement] = STATE(2110), - [sym_print_statement] = STATE(2110), - [sym_assert_statement] = STATE(2110), - [sym_expression_statement] = STATE(2110), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2110), - [sym_delete_statement] = STATE(2110), - [sym_raise_statement] = STATE(2110), - [sym_pass_statement] = STATE(2110), - [sym_break_statement] = STATE(2110), - [sym_continue_statement] = STATE(2110), - [sym_global_statement] = STATE(2110), - [sym_nonlocal_statement] = STATE(2110), - [sym_exec_statement] = STATE(2110), - [sym_type_alias_statement] = STATE(2110), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [102] = { + [sym__simple_statements] = STATE(721), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23685,16 +24041,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23705,59 +24061,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(482), [sym_string_start] = ACTIONS(81), }, - [105] = { - [sym__simple_statements] = STATE(2298), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [103] = { + [sym__simple_statements] = STATE(2552), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23778,16 +24134,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23798,59 +24154,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(486), [sym_string_start] = ACTIONS(81), }, - [106] = { - [sym__simple_statements] = STATE(2280), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [104] = { + [sym__simple_statements] = STATE(1842), + [sym_import_statement] = STATE(2475), + [sym_future_import_statement] = STATE(2475), + [sym_import_from_statement] = STATE(2475), + [sym_print_statement] = STATE(2475), + [sym_assert_statement] = STATE(2475), + [sym_expression_statement] = STATE(2475), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2475), + [sym_delete_statement] = STATE(2475), + [sym_raise_statement] = STATE(2475), + [sym_pass_statement] = STATE(2475), + [sym_break_statement] = STATE(2475), + [sym_continue_statement] = STATE(2475), + [sym_global_statement] = STATE(2475), + [sym_nonlocal_statement] = STATE(2475), + [sym_exec_statement] = STATE(2475), + [sym_type_alias_statement] = STATE(2475), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23871,16 +24227,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23891,59 +24247,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(490), [sym_string_start] = ACTIONS(81), }, - [107] = { - [sym__simple_statements] = STATE(713), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [105] = { + [sym__simple_statements] = STATE(2554), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23964,16 +24320,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -23984,59 +24340,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(494), [sym_string_start] = ACTIONS(81), }, - [108] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [106] = { + [sym__simple_statements] = STATE(752), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24057,16 +24413,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24077,59 +24433,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(498), [sym_string_start] = ACTIONS(81), }, - [109] = { - [sym__simple_statements] = STATE(2276), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [107] = { + [sym__simple_statements] = STATE(770), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24150,16 +24506,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24170,59 +24526,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(502), [sym_string_start] = ACTIONS(81), }, - [110] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [108] = { + [sym__simple_statements] = STATE(683), + [sym_import_statement] = STATE(2355), + [sym_future_import_statement] = STATE(2355), + [sym_import_from_statement] = STATE(2355), + [sym_print_statement] = STATE(2355), + [sym_assert_statement] = STATE(2355), + [sym_expression_statement] = STATE(2355), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2355), + [sym_delete_statement] = STATE(2355), + [sym_raise_statement] = STATE(2355), + [sym_pass_statement] = STATE(2355), + [sym_break_statement] = STATE(2355), + [sym_continue_statement] = STATE(2355), + [sym_global_statement] = STATE(2355), + [sym_nonlocal_statement] = STATE(2355), + [sym_exec_statement] = STATE(2355), + [sym_type_alias_statement] = STATE(2355), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24243,16 +24599,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24263,59 +24619,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(506), [sym_string_start] = ACTIONS(81), }, - [111] = { - [sym__simple_statements] = STATE(2289), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [109] = { + [sym__simple_statements] = STATE(777), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24336,16 +24692,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24356,59 +24712,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(510), [sym_string_start] = ACTIONS(81), }, - [112] = { - [sym__simple_statements] = STATE(770), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [110] = { + [sym__simple_statements] = STATE(745), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24429,16 +24785,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24449,59 +24805,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(514), [sym_string_start] = ACTIONS(81), }, - [113] = { - [sym__simple_statements] = STATE(674), - [sym_import_statement] = STATE(2175), - [sym_future_import_statement] = STATE(2175), - [sym_import_from_statement] = STATE(2175), - [sym_print_statement] = STATE(2175), - [sym_assert_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2175), - [sym_delete_statement] = STATE(2175), - [sym_raise_statement] = STATE(2175), - [sym_pass_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_global_statement] = STATE(2175), - [sym_nonlocal_statement] = STATE(2175), - [sym_exec_statement] = STATE(2175), - [sym_type_alias_statement] = STATE(2175), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [111] = { + [sym__simple_statements] = STATE(1823), + [sym_import_statement] = STATE(2475), + [sym_future_import_statement] = STATE(2475), + [sym_import_from_statement] = STATE(2475), + [sym_print_statement] = STATE(2475), + [sym_assert_statement] = STATE(2475), + [sym_expression_statement] = STATE(2475), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2475), + [sym_delete_statement] = STATE(2475), + [sym_raise_statement] = STATE(2475), + [sym_pass_statement] = STATE(2475), + [sym_break_statement] = STATE(2475), + [sym_continue_statement] = STATE(2475), + [sym_global_statement] = STATE(2475), + [sym_nonlocal_statement] = STATE(2475), + [sym_exec_statement] = STATE(2475), + [sym_type_alias_statement] = STATE(2475), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24522,16 +24878,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24542,59 +24898,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(518), [sym_string_start] = ACTIONS(81), }, - [114] = { - [sym__simple_statements] = STATE(840), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [112] = { + [sym__simple_statements] = STATE(779), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24615,16 +24971,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24635,59 +24991,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(522), [sym_string_start] = ACTIONS(81), }, - [115] = { - [sym__simple_statements] = STATE(722), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [113] = { + [sym__simple_statements] = STATE(782), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24708,16 +25064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24728,59 +25084,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(526), [sym_string_start] = ACTIONS(81), }, - [116] = { - [sym__simple_statements] = STATE(810), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [114] = { + [sym__simple_statements] = STATE(653), + [sym_import_statement] = STATE(2355), + [sym_future_import_statement] = STATE(2355), + [sym_import_from_statement] = STATE(2355), + [sym_print_statement] = STATE(2355), + [sym_assert_statement] = STATE(2355), + [sym_expression_statement] = STATE(2355), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2355), + [sym_delete_statement] = STATE(2355), + [sym_raise_statement] = STATE(2355), + [sym_pass_statement] = STATE(2355), + [sym_break_statement] = STATE(2355), + [sym_continue_statement] = STATE(2355), + [sym_global_statement] = STATE(2355), + [sym_nonlocal_statement] = STATE(2355), + [sym_exec_statement] = STATE(2355), + [sym_type_alias_statement] = STATE(2355), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24801,16 +25157,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24821,59 +25177,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(530), [sym_string_start] = ACTIONS(81), }, - [117] = { - [sym__simple_statements] = STATE(672), - [sym_import_statement] = STATE(2110), - [sym_future_import_statement] = STATE(2110), - [sym_import_from_statement] = STATE(2110), - [sym_print_statement] = STATE(2110), - [sym_assert_statement] = STATE(2110), - [sym_expression_statement] = STATE(2110), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2110), - [sym_delete_statement] = STATE(2110), - [sym_raise_statement] = STATE(2110), - [sym_pass_statement] = STATE(2110), - [sym_break_statement] = STATE(2110), - [sym_continue_statement] = STATE(2110), - [sym_global_statement] = STATE(2110), - [sym_nonlocal_statement] = STATE(2110), - [sym_exec_statement] = STATE(2110), - [sym_type_alias_statement] = STATE(2110), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [115] = { + [sym__simple_statements] = STATE(800), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24894,16 +25250,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -24914,59 +25270,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(534), [sym_string_start] = ACTIONS(81), }, - [118] = { - [sym__simple_statements] = STATE(676), - [sym_import_statement] = STATE(2176), - [sym_future_import_statement] = STATE(2176), - [sym_import_from_statement] = STATE(2176), - [sym_print_statement] = STATE(2176), - [sym_assert_statement] = STATE(2176), - [sym_expression_statement] = STATE(2176), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2176), - [sym_delete_statement] = STATE(2176), - [sym_raise_statement] = STATE(2176), - [sym_pass_statement] = STATE(2176), - [sym_break_statement] = STATE(2176), - [sym_continue_statement] = STATE(2176), - [sym_global_statement] = STATE(2176), - [sym_nonlocal_statement] = STATE(2176), - [sym_exec_statement] = STATE(2176), - [sym_type_alias_statement] = STATE(2176), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [116] = { + [sym__simple_statements] = STATE(719), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24987,16 +25343,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25007,59 +25363,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(538), [sym_string_start] = ACTIONS(81), }, - [119] = { - [sym__simple_statements] = STATE(664), - [sym_import_statement] = STATE(2222), - [sym_future_import_statement] = STATE(2222), - [sym_import_from_statement] = STATE(2222), - [sym_print_statement] = STATE(2222), - [sym_assert_statement] = STATE(2222), - [sym_expression_statement] = STATE(2222), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2222), - [sym_delete_statement] = STATE(2222), - [sym_raise_statement] = STATE(2222), - [sym_pass_statement] = STATE(2222), - [sym_break_statement] = STATE(2222), - [sym_continue_statement] = STATE(2222), - [sym_global_statement] = STATE(2222), - [sym_nonlocal_statement] = STATE(2222), - [sym_exec_statement] = STATE(2222), - [sym_type_alias_statement] = STATE(2222), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [117] = { + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25080,16 +25436,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25100,59 +25456,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(542), [sym_string_start] = ACTIONS(81), }, - [120] = { - [sym__simple_statements] = STATE(2266), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [118] = { + [sym__simple_statements] = STATE(640), + [sym_import_statement] = STATE(2450), + [sym_future_import_statement] = STATE(2450), + [sym_import_from_statement] = STATE(2450), + [sym_print_statement] = STATE(2450), + [sym_assert_statement] = STATE(2450), + [sym_expression_statement] = STATE(2450), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2450), + [sym_delete_statement] = STATE(2450), + [sym_raise_statement] = STATE(2450), + [sym_pass_statement] = STATE(2450), + [sym_break_statement] = STATE(2450), + [sym_continue_statement] = STATE(2450), + [sym_global_statement] = STATE(2450), + [sym_nonlocal_statement] = STATE(2450), + [sym_exec_statement] = STATE(2450), + [sym_type_alias_statement] = STATE(2450), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25173,16 +25529,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25193,59 +25549,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(546), [sym_string_start] = ACTIONS(81), }, - [121] = { - [sym__simple_statements] = STATE(778), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [119] = { + [sym__simple_statements] = STATE(669), + [sym_import_statement] = STATE(2424), + [sym_future_import_statement] = STATE(2424), + [sym_import_from_statement] = STATE(2424), + [sym_print_statement] = STATE(2424), + [sym_assert_statement] = STATE(2424), + [sym_expression_statement] = STATE(2424), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2424), + [sym_delete_statement] = STATE(2424), + [sym_raise_statement] = STATE(2424), + [sym_pass_statement] = STATE(2424), + [sym_break_statement] = STATE(2424), + [sym_continue_statement] = STATE(2424), + [sym_global_statement] = STATE(2424), + [sym_nonlocal_statement] = STATE(2424), + [sym_exec_statement] = STATE(2424), + [sym_type_alias_statement] = STATE(2424), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25266,16 +25622,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25286,59 +25642,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(550), [sym_string_start] = ACTIONS(81), }, - [122] = { - [sym__simple_statements] = STATE(821), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [120] = { + [sym__simple_statements] = STATE(671), + [sym_import_statement] = STATE(2471), + [sym_future_import_statement] = STATE(2471), + [sym_import_from_statement] = STATE(2471), + [sym_print_statement] = STATE(2471), + [sym_assert_statement] = STATE(2471), + [sym_expression_statement] = STATE(2471), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2471), + [sym_delete_statement] = STATE(2471), + [sym_raise_statement] = STATE(2471), + [sym_pass_statement] = STATE(2471), + [sym_break_statement] = STATE(2471), + [sym_continue_statement] = STATE(2471), + [sym_global_statement] = STATE(2471), + [sym_nonlocal_statement] = STATE(2471), + [sym_exec_statement] = STATE(2471), + [sym_type_alias_statement] = STATE(2471), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25359,16 +25715,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25379,59 +25735,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(554), [sym_string_start] = ACTIONS(81), }, - [123] = { - [sym__simple_statements] = STATE(2295), - [sym_import_statement] = STATE(2234), - [sym_future_import_statement] = STATE(2234), - [sym_import_from_statement] = STATE(2234), - [sym_print_statement] = STATE(2234), - [sym_assert_statement] = STATE(2234), - [sym_expression_statement] = STATE(2234), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2234), - [sym_delete_statement] = STATE(2234), - [sym_raise_statement] = STATE(2234), - [sym_pass_statement] = STATE(2234), - [sym_break_statement] = STATE(2234), - [sym_continue_statement] = STATE(2234), - [sym_global_statement] = STATE(2234), - [sym_nonlocal_statement] = STATE(2234), - [sym_exec_statement] = STATE(2234), - [sym_type_alias_statement] = STATE(2234), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [121] = { + [sym__simple_statements] = STATE(758), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25452,16 +25808,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25472,59 +25828,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(558), [sym_string_start] = ACTIONS(81), }, - [124] = { - [sym__simple_statements] = STATE(717), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [122] = { + [sym__simple_statements] = STATE(817), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25545,16 +25901,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25565,59 +25921,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(562), [sym_string_start] = ACTIONS(81), }, - [125] = { - [sym__simple_statements] = STATE(816), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [123] = { + [sym__simple_statements] = STATE(715), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25638,16 +25994,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25658,59 +26014,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(566), [sym_string_start] = ACTIONS(81), }, - [126] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [124] = { + [sym__simple_statements] = STATE(810), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25731,16 +26087,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25751,59 +26107,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(570), [sym_string_start] = ACTIONS(81), }, - [127] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [125] = { + [sym__simple_statements] = STATE(2534), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25824,16 +26180,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25844,59 +26200,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(574), [sym_string_start] = ACTIONS(81), }, - [128] = { - [sym__simple_statements] = STATE(677), - [sym_import_statement] = STATE(2222), - [sym_future_import_statement] = STATE(2222), - [sym_import_from_statement] = STATE(2222), - [sym_print_statement] = STATE(2222), - [sym_assert_statement] = STATE(2222), - [sym_expression_statement] = STATE(2222), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2222), - [sym_delete_statement] = STATE(2222), - [sym_raise_statement] = STATE(2222), - [sym_pass_statement] = STATE(2222), - [sym_break_statement] = STATE(2222), - [sym_continue_statement] = STATE(2222), - [sym_global_statement] = STATE(2222), - [sym_nonlocal_statement] = STATE(2222), - [sym_exec_statement] = STATE(2222), - [sym_type_alias_statement] = STATE(2222), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [126] = { + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25917,16 +26273,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -25937,59 +26293,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(578), [sym_string_start] = ACTIONS(81), }, - [129] = { - [sym__simple_statements] = STATE(740), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [127] = { + [sym__simple_statements] = STATE(837), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26010,16 +26366,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26030,59 +26386,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(582), [sym_string_start] = ACTIONS(81), }, - [130] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [128] = { + [sym__simple_statements] = STATE(804), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26103,16 +26459,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26123,59 +26479,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(586), [sym_string_start] = ACTIONS(81), }, - [131] = { - [sym__simple_statements] = STATE(735), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [129] = { + [sym__simple_statements] = STATE(717), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26196,16 +26552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26216,59 +26572,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(590), [sym_string_start] = ACTIONS(81), }, - [132] = { - [sym__simple_statements] = STATE(657), - [sym_import_statement] = STATE(2222), - [sym_future_import_statement] = STATE(2222), - [sym_import_from_statement] = STATE(2222), - [sym_print_statement] = STATE(2222), - [sym_assert_statement] = STATE(2222), - [sym_expression_statement] = STATE(2222), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2222), - [sym_delete_statement] = STATE(2222), - [sym_raise_statement] = STATE(2222), - [sym_pass_statement] = STATE(2222), - [sym_break_statement] = STATE(2222), - [sym_continue_statement] = STATE(2222), - [sym_global_statement] = STATE(2222), - [sym_nonlocal_statement] = STATE(2222), - [sym_exec_statement] = STATE(2222), - [sym_type_alias_statement] = STATE(2222), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [130] = { + [sym__simple_statements] = STATE(2539), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26289,16 +26645,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26309,59 +26665,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(594), [sym_string_start] = ACTIONS(81), }, - [133] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [131] = { + [sym__simple_statements] = STATE(691), + [sym_import_statement] = STATE(2286), + [sym_future_import_statement] = STATE(2286), + [sym_import_from_statement] = STATE(2286), + [sym_print_statement] = STATE(2286), + [sym_assert_statement] = STATE(2286), + [sym_expression_statement] = STATE(2286), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2286), + [sym_delete_statement] = STATE(2286), + [sym_raise_statement] = STATE(2286), + [sym_pass_statement] = STATE(2286), + [sym_break_statement] = STATE(2286), + [sym_continue_statement] = STATE(2286), + [sym_global_statement] = STATE(2286), + [sym_nonlocal_statement] = STATE(2286), + [sym_exec_statement] = STATE(2286), + [sym_type_alias_statement] = STATE(2286), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26382,16 +26738,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26402,59 +26758,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(598), [sym_string_start] = ACTIONS(81), }, - [134] = { - [sym__simple_statements] = STATE(793), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [132] = { + [sym__simple_statements] = STATE(2578), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26475,16 +26831,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26495,59 +26851,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(602), [sym_string_start] = ACTIONS(81), }, - [135] = { - [sym__simple_statements] = STATE(704), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [133] = { + [sym__simple_statements] = STATE(645), + [sym_import_statement] = STATE(2471), + [sym_future_import_statement] = STATE(2471), + [sym_import_from_statement] = STATE(2471), + [sym_print_statement] = STATE(2471), + [sym_assert_statement] = STATE(2471), + [sym_expression_statement] = STATE(2471), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2471), + [sym_delete_statement] = STATE(2471), + [sym_raise_statement] = STATE(2471), + [sym_pass_statement] = STATE(2471), + [sym_break_statement] = STATE(2471), + [sym_continue_statement] = STATE(2471), + [sym_global_statement] = STATE(2471), + [sym_nonlocal_statement] = STATE(2471), + [sym_exec_statement] = STATE(2471), + [sym_type_alias_statement] = STATE(2471), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26568,16 +26924,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26588,59 +26944,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(606), [sym_string_start] = ACTIONS(81), }, - [136] = { - [sym__simple_statements] = STATE(766), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [134] = { + [sym__simple_statements] = STATE(757), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26661,16 +27017,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26681,59 +27037,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(610), [sym_string_start] = ACTIONS(81), }, - [137] = { - [sym__simple_statements] = STATE(775), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [135] = { + [sym__simple_statements] = STATE(2542), + [sym_import_statement] = STATE(2510), + [sym_future_import_statement] = STATE(2510), + [sym_import_from_statement] = STATE(2510), + [sym_print_statement] = STATE(2510), + [sym_assert_statement] = STATE(2510), + [sym_expression_statement] = STATE(2510), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2510), + [sym_delete_statement] = STATE(2510), + [sym_raise_statement] = STATE(2510), + [sym_pass_statement] = STATE(2510), + [sym_break_statement] = STATE(2510), + [sym_continue_statement] = STATE(2510), + [sym_global_statement] = STATE(2510), + [sym_nonlocal_statement] = STATE(2510), + [sym_exec_statement] = STATE(2510), + [sym_type_alias_statement] = STATE(2510), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26754,16 +27110,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26774,59 +27130,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(614), [sym_string_start] = ACTIONS(81), }, - [138] = { - [sym__simple_statements] = STATE(617), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [136] = { + [sym__simple_statements] = STATE(693), + [sym_import_statement] = STATE(2262), + [sym_future_import_statement] = STATE(2262), + [sym_import_from_statement] = STATE(2262), + [sym_print_statement] = STATE(2262), + [sym_assert_statement] = STATE(2262), + [sym_expression_statement] = STATE(2262), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2262), + [sym_delete_statement] = STATE(2262), + [sym_raise_statement] = STATE(2262), + [sym_pass_statement] = STATE(2262), + [sym_break_statement] = STATE(2262), + [sym_continue_statement] = STATE(2262), + [sym_global_statement] = STATE(2262), + [sym_nonlocal_statement] = STATE(2262), + [sym_exec_statement] = STATE(2262), + [sym_type_alias_statement] = STATE(2262), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26847,16 +27203,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -26867,59 +27223,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(618), [sym_string_start] = ACTIONS(81), }, + [137] = { + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(418), + [anon_sym_async] = ACTIONS(418), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(620), + [sym_string_start] = ACTIONS(81), + }, + [138] = { + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(418), + [anon_sym_async] = ACTIONS(418), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(622), + [sym_string_start] = ACTIONS(81), + }, [139] = { - [sym__simple_statements] = STATE(784), - [sym_import_statement] = STATE(2035), - [sym_future_import_statement] = STATE(2035), - [sym_import_from_statement] = STATE(2035), - [sym_print_statement] = STATE(2035), - [sym_assert_statement] = STATE(2035), - [sym_expression_statement] = STATE(2035), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2035), - [sym_delete_statement] = STATE(2035), - [sym_raise_statement] = STATE(2035), - [sym_pass_statement] = STATE(2035), - [sym_break_statement] = STATE(2035), - [sym_continue_statement] = STATE(2035), - [sym_global_statement] = STATE(2035), - [sym_nonlocal_statement] = STATE(2035), - [sym_exec_statement] = STATE(2035), - [sym_type_alias_statement] = STATE(2035), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(418), + [anon_sym_async] = ACTIONS(418), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(624), + [sym_string_start] = ACTIONS(81), + }, + [140] = { + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(418), + [anon_sym_async] = ACTIONS(418), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(626), + [sym_string_start] = ACTIONS(81), + }, + [141] = { + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = 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(418), + [anon_sym_async] = ACTIONS(418), + [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_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(628), + [sym_string_start] = ACTIONS(81), + }, + [142] = { + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -26940,292 +27750,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(620), - [sym__indent] = ACTIONS(622), - [sym_string_start] = ACTIONS(81), - }, - [140] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2034), - [sym_future_import_statement] = STATE(2034), - [sym_import_from_statement] = STATE(2034), - [sym_print_statement] = STATE(2034), - [sym_assert_statement] = STATE(2034), - [sym_expression_statement] = STATE(2034), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2034), - [sym_delete_statement] = STATE(2034), - [sym_raise_statement] = STATE(2034), - [sym_pass_statement] = STATE(2034), - [sym_break_statement] = STATE(2034), - [sym_continue_statement] = STATE(2034), - [sym_global_statement] = STATE(2034), - [sym_nonlocal_statement] = STATE(2034), - [sym_exec_statement] = STATE(2034), - [sym_type_alias_statement] = STATE(2034), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(624), - [sym__indent] = ACTIONS(626), - [sym_string_start] = ACTIONS(81), - }, - [141] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(628), - [sym_string_start] = ACTIONS(81), - }, - [142] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27236,57 +27770,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [143] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27307,16 +27841,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27327,57 +27861,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [144] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27398,16 +27932,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27418,57 +27952,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [145] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27489,16 +28023,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27509,57 +28043,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [146] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27580,16 +28114,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27600,57 +28134,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [147] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27671,16 +28205,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27691,57 +28225,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [148] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27762,16 +28296,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27782,57 +28316,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [149] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27853,16 +28387,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27873,57 +28407,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [150] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -27944,16 +28478,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -27964,57 +28498,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [151] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -28035,16 +28569,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -28055,57 +28589,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [152] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -28126,16 +28660,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), @@ -28146,57 +28680,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [153] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_import_statement] = STATE(2605), + [sym_future_import_statement] = STATE(2605), + [sym_import_from_statement] = STATE(2605), + [sym_print_statement] = STATE(2605), + [sym_assert_statement] = STATE(2605), + [sym_expression_statement] = STATE(2605), + [sym_named_expression] = STATE(1685), + [sym__named_expression_lhs] = STATE(2795), + [sym_return_statement] = STATE(2605), + [sym_delete_statement] = STATE(2605), + [sym_raise_statement] = STATE(2605), + [sym_pass_statement] = STATE(2605), + [sym_break_statement] = STATE(2605), + [sym_continue_statement] = STATE(2605), + [sym_global_statement] = STATE(2605), + [sym_nonlocal_statement] = STATE(2605), + [sym_exec_statement] = STATE(2605), + [sym_type_alias_statement] = STATE(2605), + [sym_pattern] = STATE(1666), + [sym_tuple_pattern] = STATE(1663), + [sym_list_pattern] = STATE(1663), + [sym_list_splat_pattern] = STATE(626), + [sym_as_pattern] = STATE(1685), + [sym_expression] = STATE(1810), + [sym_primary_expression] = STATE(998), + [sym_not_operator] = STATE(1685), + [sym_boolean_operator] = STATE(1685), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_comparison_operator] = STATE(1685), + [sym_lambda] = STATE(1685), + [sym_assignment] = STATE(2530), + [sym_augmented_assignment] = STATE(2530), + [sym_pattern_list] = STATE(1672), + [sym_yield] = STATE(2530), + [sym_attribute] = STATE(619), + [sym_subscript] = STATE(619), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_conditional_expression] = STATE(1685), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -28217,442 +28751,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), + [sym_float] = ACTIONS(75), [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(652), [sym_string_start] = ACTIONS(81), }, [154] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(654), - [sym_string_start] = ACTIONS(81), - }, - [155] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(656), - [sym_string_start] = ACTIONS(81), - }, - [156] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(658), - [sym_string_start] = ACTIONS(81), - }, - [157] = { - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1618), - [sym__named_expression_lhs] = STATE(2517), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1596), - [sym_tuple_pattern] = STATE(1595), - [sym_list_pattern] = STATE(1595), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1618), - [sym_expression] = STATE(1736), - [sym_primary_expression] = STATE(1030), - [sym_not_operator] = STATE(1618), - [sym_boolean_operator] = STATE(1618), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_comparison_operator] = STATE(1618), - [sym_lambda] = STATE(1618), - [sym_assignment] = STATE(2264), - [sym_augmented_assignment] = STATE(2264), - [sym_pattern_list] = STATE(1607), - [sym_yield] = STATE(2264), - [sym_attribute] = STATE(642), - [sym_subscript] = STATE(642), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_conditional_expression] = STATE(1618), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = 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(418), - [anon_sym_async] = ACTIONS(418), - [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_not] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_TILDE] = ACTIONS(67), - [anon_sym_lambda] = ACTIONS(69), - [anon_sym_yield] = ACTIONS(71), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(81), - }, - [158] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [sym_list_splat_pattern] = STATE(1125), + [sym_primary_expression] = STATE(980), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_print] = ACTIONS(656), [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(294), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), + [anon_sym_COLON] = ACTIONS(326), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(656), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_type] = ACTIONS(666), + [anon_sym_exec] = ACTIONS(656), + [anon_sym_type] = ACTIONS(658), [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(660), [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(662), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -28661,24 +28832,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(672), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(664), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -28687,60 +28857,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [159] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [155] = { + [sym_list_splat_pattern] = STATE(1125), + [sym_primary_expression] = STATE(980), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_print] = ACTIONS(656), [anon_sym_GT_GT] = ACTIONS(279), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(326), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), + [anon_sym_COLON] = ACTIONS(294), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(656), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_type] = ACTIONS(666), + [anon_sym_exec] = ACTIONS(656), + [anon_sym_type] = ACTIONS(658), [anon_sym_EQ] = ACTIONS(294), - [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(660), [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(662), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(670), - [anon_sym_DASH] = ACTIONS(670), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(279), [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), [anon_sym_AMP] = ACTIONS(279), [anon_sym_CARET] = ACTIONS(279), [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -28749,24 +28920,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(672), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(664), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -28775,148 +28945,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [160] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [156] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(676), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(676), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(679), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(676), - [anon_sym_SLASH_SLASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_CARET] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_AT_EQ] = ACTIONS(674), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_STAR_STAR_EQ] = ACTIONS(674), - [anon_sym_GT_GT_EQ] = ACTIONS(674), - [anon_sym_LT_LT_EQ] = ACTIONS(674), - [anon_sym_AMP_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_PIPE_EQ] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_AT_EQ] = ACTIONS(666), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_STAR_STAR_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(674), + [sym__newline] = ACTIONS(666), [sym_string_start] = ACTIONS(324), }, - [161] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [157] = { + [sym_list_splat_pattern] = STATE(1125), + [sym_primary_expression] = STATE(980), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_print] = ACTIONS(656), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(656), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_type] = ACTIONS(666), + [anon_sym_exec] = ACTIONS(656), + [anon_sym_type] = ACTIONS(658), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(660), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -28925,11 +29096,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(672), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(664), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -28938,60 +29108,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [162] = { - [sym_list_splat_pattern] = STATE(1118), - [sym_primary_expression] = STATE(981), - [sym_binary_operator] = STATE(1055), - [sym_unary_operator] = STATE(1055), - [sym_attribute] = STATE(1055), - [sym_subscript] = STATE(1055), - [sym_call] = STATE(1055), - [sym_list] = STATE(1055), - [sym_set] = STATE(1055), - [sym_tuple] = STATE(1055), - [sym_dictionary] = STATE(1055), - [sym_list_comprehension] = STATE(1055), - [sym_dictionary_comprehension] = STATE(1055), - [sym_set_comprehension] = STATE(1055), - [sym_generator_expression] = STATE(1055), - [sym_parenthesized_expression] = STATE(1055), - [sym_concatenated_string] = STATE(1055), - [sym_string] = STATE(978), - [sym_await] = STATE(1055), + [158] = { + [sym_list_splat_pattern] = STATE(1125), + [sym_primary_expression] = STATE(980), + [sym_binary_operator] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_attribute] = STATE(1077), + [sym_subscript] = STATE(1077), + [sym_call] = STATE(1077), + [sym_list] = STATE(1077), + [sym_set] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_dictionary] = STATE(1077), + [sym_list_comprehension] = STATE(1077), + [sym_dictionary_comprehension] = STATE(1077), + [sym_set_comprehension] = STATE(1077), + [sym_generator_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_concatenated_string] = STATE(1077), + [sym_string] = STATE(968), + [sym_await] = STATE(1077), [sym_identifier] = ACTIONS(77), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_DOT] = ACTIONS(279), [anon_sym_from] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_print] = ACTIONS(664), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_print] = ACTIONS(656), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(664), - [anon_sym_async] = ACTIONS(664), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(656), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(664), - [anon_sym_type] = ACTIONS(666), + [anon_sym_exec] = ACTIONS(656), + [anon_sym_type] = ACTIONS(658), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(668), + [anon_sym_LBRACK] = ACTIONS(660), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(67), + [anon_sym_TILDE] = ACTIONS(65), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29000,11 +29171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(73), - [anon_sym_LBRACE] = ACTIONS(75), + [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(73), - [anon_sym_await] = ACTIONS(672), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(664), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), @@ -29013,9 +29183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(277), [sym_string_start] = ACTIONS(81), }, - [163] = { - [sym_list_splat_pattern] = STATE(1272), - [sym_primary_expression] = STATE(1039), + [159] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), [sym_binary_operator] = STATE(1282), [sym_unary_operator] = STATE(1282), [sym_attribute] = STATE(1282), @@ -29031,41 +29201,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(1282), [sym_parenthesized_expression] = STATE(1282), [sym_concatenated_string] = STATE(1282), - [sym_string] = STATE(989), + [sym_string] = STATE(1007), [sym_await] = STATE(1282), - [sym_identifier] = ACTIONS(687), + [sym_identifier] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(666), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_from] = ACTIONS(671), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(666), + [sym_string_start] = ACTIONS(324), + }, + [160] = { + [sym_list_splat_pattern] = STATE(1218), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1258), + [sym_unary_operator] = STATE(1258), + [sym_attribute] = STATE(1258), + [sym_subscript] = STATE(1258), + [sym_call] = STATE(1258), + [sym_list] = STATE(1258), + [sym_set] = STATE(1258), + [sym_tuple] = STATE(1258), + [sym_dictionary] = STATE(1258), + [sym_list_comprehension] = STATE(1258), + [sym_dictionary_comprehension] = STATE(1258), + [sym_set_comprehension] = STATE(1258), + [sym_generator_expression] = STATE(1258), + [sym_parenthesized_expression] = STATE(1258), + [sym_concatenated_string] = STATE(1258), + [sym_string] = STATE(977), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(682), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(684), [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_print] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_print] = ACTIONS(688), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(693), - [anon_sym_async] = ACTIONS(693), + [anon_sym_match] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(693), - [anon_sym_type] = ACTIONS(695), + [anon_sym_exec] = ACTIONS(688), + [anon_sym_type] = ACTIONS(690), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(692), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(694), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(694), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29074,173 +29321,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(277), + [sym_ellipsis] = ACTIONS(698), [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(687), - [sym_float] = ACTIONS(701), - [anon_sym_await] = ACTIONS(705), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_none] = ACTIONS(687), + [sym_integer] = ACTIONS(682), + [sym_float] = ACTIONS(698), + [anon_sym_await] = ACTIONS(700), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_none] = ACTIONS(682), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(707), + [sym_string_start] = ACTIONS(702), }, - [164] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [161] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(674), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_from] = ACTIONS(679), + [anon_sym_DOT] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(679), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(671), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(318), + [sym_type_conversion] = ACTIONS(666), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(674), [sym_string_start] = ACTIONS(324), }, - [165] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_RBRACE] = ACTIONS(674), - [sym_type_conversion] = ACTIONS(674), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [162] = { + [sym_list_splat_pattern] = STATE(1218), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1258), + [sym_unary_operator] = STATE(1258), + [sym_attribute] = STATE(1258), + [sym_subscript] = STATE(1258), + [sym_call] = STATE(1258), + [sym_list] = STATE(1258), + [sym_set] = STATE(1258), + [sym_tuple] = STATE(1258), + [sym_dictionary] = STATE(1258), + [sym_list_comprehension] = STATE(1258), + [sym_dictionary_comprehension] = STATE(1258), + [sym_set_comprehension] = STATE(1258), + [sym_generator_expression] = STATE(1258), + [sym_parenthesized_expression] = STATE(1258), + [sym_concatenated_string] = STATE(1258), + [sym_string] = STATE(977), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_print] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_match] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(688), + [anon_sym_type] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(698), + [sym_type_conversion] = ACTIONS(277), + [sym_integer] = ACTIONS(682), + [sym_float] = ACTIONS(698), + [anon_sym_await] = ACTIONS(700), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_none] = ACTIONS(682), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(702), }, - [166] = { - [sym_list_splat_pattern] = STATE(1272), - [sym_primary_expression] = STATE(1039), + [163] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), [sym_binary_operator] = STATE(1282), [sym_unary_operator] = STATE(1282), [sym_attribute] = STATE(1282), @@ -29256,41 +29501,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(1282), [sym_parenthesized_expression] = STATE(1282), [sym_concatenated_string] = STATE(1282), - [sym_string] = STATE(989), + [sym_string] = STATE(1007), [sym_await] = STATE(1282), - [sym_identifier] = ACTIONS(687), + [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(408), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_print] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_print] = ACTIONS(673), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(693), - [anon_sym_async] = ACTIONS(693), + [anon_sym_else] = ACTIONS(279), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(693), - [anon_sym_type] = ACTIONS(695), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(412), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29299,87 +29546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(277), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(687), - [sym_float] = ACTIONS(701), - [anon_sym_await] = ACTIONS(705), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_none] = ACTIONS(687), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(707), - }, - [167] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_RPAREN] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), @@ -29387,60 +29557,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(324), }, - [168] = { - [sym_list_splat_pattern] = STATE(1420), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1298), - [sym_unary_operator] = STATE(1298), - [sym_attribute] = STATE(1298), - [sym_subscript] = STATE(1298), - [sym_call] = STATE(1298), - [sym_list] = STATE(1298), - [sym_set] = STATE(1298), - [sym_tuple] = STATE(1298), - [sym_dictionary] = STATE(1298), - [sym_list_comprehension] = STATE(1298), - [sym_dictionary_comprehension] = STATE(1298), - [sym_set_comprehension] = STATE(1298), - [sym_generator_expression] = STATE(1298), - [sym_parenthesized_expression] = STATE(1298), - [sym_concatenated_string] = STATE(1298), - [sym_string] = STATE(1024), - [sym_await] = STATE(1298), - [sym_identifier] = ACTIONS(712), + [164] = { + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1019), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_string] = STATE(987), + [sym_await] = STATE(1235), + [sym_identifier] = ACTIONS(704), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(706), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_print] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_print] = ACTIONS(710), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(718), - [anon_sym_async] = ACTIONS(718), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_match] = ACTIONS(710), + [anon_sym_async] = ACTIONS(710), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(718), - [anon_sym_type] = ACTIONS(720), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_exec] = ACTIONS(710), + [anon_sym_type] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(714), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(716), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(726), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(716), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29449,72 +29620,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), - [sym_integer] = ACTIONS(712), - [sym_float] = ACTIONS(728), - [anon_sym_await] = ACTIONS(732), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_none] = ACTIONS(712), + [sym_ellipsis] = ACTIONS(720), + [sym_integer] = ACTIONS(704), + [sym_float] = ACTIONS(720), + [anon_sym_await] = ACTIONS(722), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_none] = ACTIONS(704), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(734), + [sym_string_start] = ACTIONS(724), }, - [169] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1133), - [sym_binary_operator] = STATE(1415), - [sym_unary_operator] = STATE(1415), - [sym_attribute] = STATE(1415), - [sym_subscript] = STATE(1415), - [sym_call] = STATE(1415), - [sym_list] = STATE(1415), - [sym_set] = STATE(1415), - [sym_tuple] = STATE(1415), - [sym_dictionary] = STATE(1415), - [sym_list_comprehension] = STATE(1415), - [sym_dictionary_comprehension] = STATE(1415), - [sym_set_comprehension] = STATE(1415), - [sym_generator_expression] = STATE(1415), - [sym_parenthesized_expression] = STATE(1415), - [sym_concatenated_string] = STATE(1415), - [sym_string] = STATE(1044), - [sym_await] = STATE(1415), - [sym_identifier] = ACTIONS(736), + [165] = { + [sym_list_splat_pattern] = STATE(1401), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1303), + [sym_unary_operator] = STATE(1303), + [sym_attribute] = STATE(1303), + [sym_subscript] = STATE(1303), + [sym_call] = STATE(1303), + [sym_list] = STATE(1303), + [sym_set] = STATE(1303), + [sym_tuple] = STATE(1303), + [sym_dictionary] = STATE(1303), + [sym_list_comprehension] = STATE(1303), + [sym_dictionary_comprehension] = STATE(1303), + [sym_set_comprehension] = STATE(1303), + [sym_generator_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string] = STATE(1034), + [sym_await] = STATE(1303), + [sym_identifier] = ACTIONS(726), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(728), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_print] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_print] = ACTIONS(732), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(742), - [anon_sym_async] = ACTIONS(742), + [anon_sym_match] = ACTIONS(732), + [anon_sym_async] = ACTIONS(732), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(742), - [anon_sym_type] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_exec] = ACTIONS(732), + [anon_sym_type] = ACTIONS(734), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(738), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(744), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(748), + }, + [166] = { + [sym_list_splat_pattern] = STATE(1218), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1258), + [sym_unary_operator] = STATE(1258), + [sym_attribute] = STATE(1258), + [sym_subscript] = STATE(1258), + [sym_call] = STATE(1258), + [sym_list] = STATE(1258), + [sym_set] = STATE(1258), + [sym_tuple] = STATE(1258), + [sym_dictionary] = STATE(1258), + [sym_list_comprehension] = STATE(1258), + [sym_dictionary_comprehension] = STATE(1258), + [sym_set_comprehension] = STATE(1258), + [sym_generator_expression] = STATE(1258), + [sym_parenthesized_expression] = STATE(1258), + [sym_concatenated_string] = STATE(1258), + [sym_string] = STATE(977), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_as] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_print] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_match] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(668), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(688), + [anon_sym_type] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_not] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(679), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_LT_GT] = ACTIONS(679), + [anon_sym_is] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(698), + [sym_integer] = ACTIONS(682), + [sym_float] = ACTIONS(698), + [anon_sym_await] = ACTIONS(700), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_none] = ACTIONS(682), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(702), + }, + [167] = { + [sym_list_splat_pattern] = STATE(1218), + [sym_primary_expression] = STATE(1041), + [sym_binary_operator] = STATE(1258), + [sym_unary_operator] = STATE(1258), + [sym_attribute] = STATE(1258), + [sym_subscript] = STATE(1258), + [sym_call] = STATE(1258), + [sym_list] = STATE(1258), + [sym_set] = STATE(1258), + [sym_tuple] = STATE(1258), + [sym_dictionary] = STATE(1258), + [sym_list_comprehension] = STATE(1258), + [sym_dictionary_comprehension] = STATE(1258), + [sym_set_comprehension] = STATE(1258), + [sym_generator_expression] = STATE(1258), + [sym_parenthesized_expression] = STATE(1258), + [sym_concatenated_string] = STATE(1258), + [sym_string] = STATE(977), + [sym_await] = STATE(1258), + [sym_identifier] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_print] = ACTIONS(688), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_match] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(688), + [anon_sym_type] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(694), [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(694), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29523,21 +29841,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(750), - [anon_sym_await] = ACTIONS(754), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), + [sym_ellipsis] = ACTIONS(698), + [sym_type_conversion] = ACTIONS(277), + [sym_integer] = ACTIONS(682), + [sym_float] = ACTIONS(698), + [anon_sym_await] = ACTIONS(700), + [sym_true] = ACTIONS(682), + [sym_false] = ACTIONS(682), + [sym_none] = ACTIONS(682), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(756), + [sym_string_start] = ACTIONS(702), }, - [170] = { - [sym_list_splat_pattern] = STATE(1272), - [sym_primary_expression] = STATE(1039), + [168] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), [sym_binary_operator] = STATE(1282), [sym_unary_operator] = STATE(1282), [sym_attribute] = STATE(1282), @@ -29553,40 +29871,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(1282), [sym_parenthesized_expression] = STATE(1282), [sym_concatenated_string] = STATE(1282), - [sym_string] = STATE(989), + [sym_string] = STATE(1007), [sym_await] = STATE(1282), - [sym_identifier] = ACTIONS(687), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_RPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(324), + }, + [169] = { + [sym_list_splat_pattern] = STATE(1427), + [sym_primary_expression] = STATE(1108), + [sym_binary_operator] = STATE(1304), + [sym_unary_operator] = STATE(1304), + [sym_attribute] = STATE(1304), + [sym_subscript] = STATE(1304), + [sym_call] = STATE(1304), + [sym_list] = STATE(1304), + [sym_set] = STATE(1304), + [sym_tuple] = STATE(1304), + [sym_dictionary] = STATE(1304), + [sym_list_comprehension] = STATE(1304), + [sym_dictionary_comprehension] = STATE(1304), + [sym_set_comprehension] = STATE(1304), + [sym_generator_expression] = STATE(1304), + [sym_parenthesized_expression] = STATE(1304), + [sym_concatenated_string] = STATE(1304), + [sym_string] = STATE(1009), + [sym_await] = STATE(1304), + [sym_identifier] = ACTIONS(750), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(689), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_print] = ACTIONS(693), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_print] = ACTIONS(756), [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(693), - [anon_sym_async] = ACTIONS(693), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_match] = ACTIONS(756), + [anon_sym_async] = ACTIONS(756), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(693), - [anon_sym_type] = ACTIONS(695), + [anon_sym_exec] = ACTIONS(756), + [anon_sym_type] = ACTIONS(758), [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(760), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(762), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(762), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29595,73 +29990,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(703), + [sym_ellipsis] = ACTIONS(766), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(766), + [anon_sym_await] = ACTIONS(768), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(770), + }, + [170] = { + [sym_list_splat_pattern] = STATE(1214), + [sym_primary_expression] = STATE(1019), + [sym_binary_operator] = STATE(1235), + [sym_unary_operator] = STATE(1235), + [sym_attribute] = STATE(1235), + [sym_subscript] = STATE(1235), + [sym_call] = STATE(1235), + [sym_list] = STATE(1235), + [sym_set] = STATE(1235), + [sym_tuple] = STATE(1235), + [sym_dictionary] = STATE(1235), + [sym_list_comprehension] = STATE(1235), + [sym_dictionary_comprehension] = STATE(1235), + [sym_set_comprehension] = STATE(1235), + [sym_generator_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [sym_string] = STATE(987), + [sym_await] = STATE(1235), + [sym_identifier] = ACTIONS(704), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(706), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_as] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(708), + [anon_sym_print] = ACTIONS(710), + [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_if] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_match] = ACTIONS(710), + [anon_sym_async] = ACTIONS(710), + [anon_sym_for] = ACTIONS(279), + [anon_sym_in] = ACTIONS(279), + [anon_sym_STAR_STAR] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(710), + [anon_sym_type] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(714), + [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(718), [anon_sym_RBRACE] = ACTIONS(277), - [sym_type_conversion] = ACTIONS(277), - [sym_integer] = ACTIONS(687), - [sym_float] = ACTIONS(701), - [anon_sym_await] = ACTIONS(705), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_none] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_not] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_LT_LT] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(716), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_LT_GT] = ACTIONS(277), + [anon_sym_is] = ACTIONS(279), + [sym_ellipsis] = ACTIONS(720), + [sym_integer] = ACTIONS(704), + [sym_float] = ACTIONS(720), + [anon_sym_await] = ACTIONS(722), + [sym_true] = ACTIONS(704), + [sym_false] = ACTIONS(704), + [sym_none] = ACTIONS(704), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(707), + [sym_string_start] = ACTIONS(724), }, [171] = { - [sym_list_splat_pattern] = STATE(1239), - [sym_primary_expression] = STATE(1033), - [sym_binary_operator] = STATE(1193), - [sym_unary_operator] = STATE(1193), - [sym_attribute] = STATE(1193), - [sym_subscript] = STATE(1193), - [sym_call] = STATE(1193), - [sym_list] = STATE(1193), - [sym_set] = STATE(1193), - [sym_tuple] = STATE(1193), - [sym_dictionary] = STATE(1193), - [sym_list_comprehension] = STATE(1193), - [sym_dictionary_comprehension] = STATE(1193), - [sym_set_comprehension] = STATE(1193), - [sym_generator_expression] = STATE(1193), - [sym_parenthesized_expression] = STATE(1193), - [sym_concatenated_string] = STATE(1193), - [sym_string] = STATE(998), - [sym_await] = STATE(1193), - [sym_identifier] = ACTIONS(758), + [sym_list_splat_pattern] = STATE(1310), + [sym_primary_expression] = STATE(1146), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(1011), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(772), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_print] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_print] = ACTIONS(778), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(764), - [anon_sym_async] = ACTIONS(764), + [anon_sym_match] = ACTIONS(778), + [anon_sym_async] = ACTIONS(778), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_exec] = ACTIONS(778), + [anon_sym_type] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(284), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(784), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(784), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29670,73 +30136,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(774), - [anon_sym_RBRACE] = ACTIONS(277), - [sym_integer] = ACTIONS(758), - [sym_float] = ACTIONS(772), - [anon_sym_await] = ACTIONS(776), - [sym_true] = ACTIONS(758), - [sym_false] = ACTIONS(758), - [sym_none] = ACTIONS(758), + [sym_ellipsis] = ACTIONS(788), + [sym_integer] = ACTIONS(772), + [sym_float] = ACTIONS(788), + [anon_sym_await] = ACTIONS(790), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_none] = ACTIONS(772), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(778), + [sym_string_start] = ACTIONS(792), }, [172] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(408), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), + [anon_sym_print] = ACTIONS(673), [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(277), [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), [anon_sym_EQ] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(412), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(312), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29745,11 +30209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), @@ -29758,8 +30221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(324), }, [173] = { - [sym_list_splat_pattern] = STATE(1272), - [sym_primary_expression] = STATE(1039), + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), [sym_binary_operator] = STATE(1282), [sym_unary_operator] = STATE(1282), [sym_attribute] = STATE(1282), @@ -29775,188 +30238,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_generator_expression] = STATE(1282), [sym_parenthesized_expression] = STATE(1282), [sym_concatenated_string] = STATE(1282), - [sym_string] = STATE(989), + [sym_string] = STATE(1007), [sym_await] = STATE(1282), - [sym_identifier] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(689), - [anon_sym_COMMA] = ACTIONS(709), - [anon_sym_as] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(691), - [anon_sym_print] = ACTIONS(693), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(679), - [anon_sym_match] = ACTIONS(693), - [anon_sym_async] = ACTIONS(693), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(676), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(693), - [anon_sym_type] = ACTIONS(695), - [anon_sym_LBRACK] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(676), - [anon_sym_and] = ACTIONS(676), - [anon_sym_or] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(699), - [anon_sym_LT] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_LT_GT] = ACTIONS(709), - [anon_sym_is] = ACTIONS(676), - [sym_ellipsis] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_RBRACE] = ACTIONS(709), - [sym_integer] = ACTIONS(687), - [sym_float] = ACTIONS(701), - [anon_sym_await] = ACTIONS(705), - [sym_true] = ACTIONS(687), - [sym_false] = ACTIONS(687), - [sym_none] = ACTIONS(687), + [sym_identifier] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), + [anon_sym_STAR] = ACTIONS(410), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_else] = ACTIONS(671), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(412), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(318), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), + [sym_true] = ACTIONS(320), + [sym_false] = ACTIONS(320), + [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(707), + [sym_string_start] = ACTIONS(324), }, [174] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), + [anon_sym_SEMI] = ACTIONS(316), [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(277), - [anon_sym_as] = ACTIONS(279), + [anon_sym_COMMA] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_else] = ACTIONS(279), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(279), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(316), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(316), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(316), [sym_string_start] = ACTIONS(324), }, [175] = { - [sym_list_splat_pattern] = STATE(1420), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1298), - [sym_unary_operator] = STATE(1298), - [sym_attribute] = STATE(1298), - [sym_subscript] = STATE(1298), - [sym_call] = STATE(1298), - [sym_list] = STATE(1298), - [sym_set] = STATE(1298), - [sym_tuple] = STATE(1298), - [sym_dictionary] = STATE(1298), - [sym_list_comprehension] = STATE(1298), - [sym_dictionary_comprehension] = STATE(1298), - [sym_set_comprehension] = STATE(1298), - [sym_generator_expression] = STATE(1298), - [sym_parenthesized_expression] = STATE(1298), - [sym_concatenated_string] = STATE(1298), - [sym_string] = STATE(1024), - [sym_await] = STATE(1298), - [sym_identifier] = ACTIONS(712), + [sym_list_splat_pattern] = STATE(1310), + [sym_primary_expression] = STATE(1146), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(1011), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(772), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(774), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_print] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_print] = ACTIONS(778), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(718), - [anon_sym_async] = ACTIONS(718), + [anon_sym_match] = ACTIONS(778), + [anon_sym_async] = ACTIONS(778), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(718), - [anon_sym_type] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_exec] = ACTIONS(778), + [anon_sym_type] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(784), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(726), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(784), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -29965,290 +30428,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), - [sym_integer] = ACTIONS(712), - [sym_float] = ACTIONS(728), - [anon_sym_await] = ACTIONS(732), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_none] = ACTIONS(712), + [sym_ellipsis] = ACTIONS(788), + [sym_integer] = ACTIONS(772), + [sym_float] = ACTIONS(788), + [anon_sym_await] = ACTIONS(790), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_none] = ACTIONS(772), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(734), + [sym_string_start] = ACTIONS(792), }, [176] = { - [sym_list_splat_pattern] = STATE(1420), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1298), - [sym_unary_operator] = STATE(1298), - [sym_attribute] = STATE(1298), - [sym_subscript] = STATE(1298), - [sym_call] = STATE(1298), - [sym_list] = STATE(1298), - [sym_set] = STATE(1298), - [sym_tuple] = STATE(1298), - [sym_dictionary] = STATE(1298), - [sym_list_comprehension] = STATE(1298), - [sym_dictionary_comprehension] = STATE(1298), - [sym_set_comprehension] = STATE(1298), - [sym_generator_expression] = STATE(1298), - [sym_parenthesized_expression] = STATE(1298), - [sym_concatenated_string] = STATE(1298), - [sym_string] = STATE(1024), - [sym_await] = STATE(1298), - [sym_identifier] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(284), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_print] = ACTIONS(718), - [anon_sym_GT_GT] = ACTIONS(277), + [sym_list_splat_pattern] = STATE(1484), + [sym_primary_expression] = STATE(1193), + [sym_binary_operator] = STATE(1477), + [sym_unary_operator] = STATE(1477), + [sym_attribute] = STATE(1477), + [sym_subscript] = STATE(1477), + [sym_call] = STATE(1477), + [sym_list] = STATE(1477), + [sym_set] = STATE(1477), + [sym_tuple] = STATE(1477), + [sym_dictionary] = STATE(1477), + [sym_list_comprehension] = STATE(1477), + [sym_dictionary_comprehension] = STATE(1477), + [sym_set_comprehension] = STATE(1477), + [sym_generator_expression] = STATE(1477), + [sym_parenthesized_expression] = STATE(1477), + [sym_concatenated_string] = STATE(1477), + [sym_string] = STATE(1152), + [sym_await] = STATE(1477), + [sym_identifier] = ACTIONS(794), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_as] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_print] = ACTIONS(800), + [anon_sym_GT_GT] = ACTIONS(679), [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(718), - [anon_sym_async] = ACTIONS(718), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(718), - [anon_sym_type] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(726), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), - [sym_integer] = ACTIONS(712), - [sym_float] = ACTIONS(728), - [anon_sym_await] = ACTIONS(732), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_none] = ACTIONS(712), + [anon_sym_if] = ACTIONS(668), + [anon_sym_match] = ACTIONS(800), + [anon_sym_async] = ACTIONS(800), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(668), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(800), + [anon_sym_type] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_not] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(679), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_LT_GT] = ACTIONS(679), + [anon_sym_is] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(810), + [sym_integer] = ACTIONS(794), + [sym_float] = ACTIONS(810), + [anon_sym_await] = ACTIONS(812), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_none] = ACTIONS(794), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(734), + [sym_string_start] = ACTIONS(814), }, [177] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1133), - [sym_binary_operator] = STATE(1415), - [sym_unary_operator] = STATE(1415), - [sym_attribute] = STATE(1415), - [sym_subscript] = STATE(1415), - [sym_call] = STATE(1415), - [sym_list] = STATE(1415), - [sym_set] = STATE(1415), - [sym_tuple] = STATE(1415), - [sym_dictionary] = STATE(1415), - [sym_list_comprehension] = STATE(1415), - [sym_dictionary_comprehension] = STATE(1415), - [sym_set_comprehension] = STATE(1415), - [sym_generator_expression] = STATE(1415), - [sym_parenthesized_expression] = STATE(1415), - [sym_concatenated_string] = STATE(1415), - [sym_string] = STATE(1044), - [sym_await] = STATE(1415), - [sym_identifier] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(738), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_COMMA] = ACTIONS(709), - [anon_sym_as] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_print] = ACTIONS(742), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(676), - [anon_sym_match] = ACTIONS(742), - [anon_sym_async] = ACTIONS(742), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(676), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(742), - [anon_sym_type] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(746), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(676), - [anon_sym_and] = ACTIONS(676), - [anon_sym_or] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(748), - [anon_sym_LT] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_LT_GT] = ACTIONS(709), - [anon_sym_is] = ACTIONS(676), - [sym_ellipsis] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(750), - [anon_sym_await] = ACTIONS(754), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(756), - }, - [178] = { - [sym_list_splat_pattern] = STATE(1400), - [sym_primary_expression] = STATE(1058), - [sym_binary_operator] = STATE(1291), - [sym_unary_operator] = STATE(1291), - [sym_attribute] = STATE(1291), - [sym_subscript] = STATE(1291), - [sym_call] = STATE(1291), - [sym_list] = STATE(1291), - [sym_set] = STATE(1291), - [sym_tuple] = STATE(1291), - [sym_dictionary] = STATE(1291), - [sym_list_comprehension] = STATE(1291), - [sym_dictionary_comprehension] = STATE(1291), - [sym_set_comprehension] = STATE(1291), - [sym_generator_expression] = STATE(1291), - [sym_parenthesized_expression] = STATE(1291), - [sym_concatenated_string] = STATE(1291), - [sym_string] = STATE(1047), - [sym_await] = STATE(1291), - [sym_identifier] = ACTIONS(780), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(782), - [anon_sym_COMMA] = ACTIONS(284), - [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_print] = ACTIONS(786), - [anon_sym_GT_GT] = ACTIONS(277), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(786), - [anon_sym_async] = ACTIONS(786), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(279), - [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(786), - [anon_sym_type] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(284), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_not] = ACTIONS(279), - [anon_sym_and] = ACTIONS(279), - [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(277), - [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_AMP] = ACTIONS(277), - [anon_sym_CARET] = ACTIONS(277), - [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(279), - [anon_sym_LT_EQ] = ACTIONS(277), - [anon_sym_EQ_EQ] = ACTIONS(277), - [anon_sym_BANG_EQ] = ACTIONS(277), - [anon_sym_GT_EQ] = ACTIONS(277), - [anon_sym_GT] = ACTIONS(279), - [anon_sym_LT_GT] = ACTIONS(277), - [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(796), - [sym_integer] = ACTIONS(780), - [sym_float] = ACTIONS(794), - [anon_sym_await] = ACTIONS(798), - [sym_true] = ACTIONS(780), - [sym_false] = ACTIONS(780), - [sym_none] = ACTIONS(780), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(800), - }, - [179] = { - [sym_list_splat_pattern] = STATE(1400), - [sym_primary_expression] = STATE(1058), - [sym_binary_operator] = STATE(1291), - [sym_unary_operator] = STATE(1291), - [sym_attribute] = STATE(1291), - [sym_subscript] = STATE(1291), - [sym_call] = STATE(1291), - [sym_list] = STATE(1291), - [sym_set] = STATE(1291), - [sym_tuple] = STATE(1291), - [sym_dictionary] = STATE(1291), - [sym_list_comprehension] = STATE(1291), - [sym_dictionary_comprehension] = STATE(1291), - [sym_set_comprehension] = STATE(1291), - [sym_generator_expression] = STATE(1291), - [sym_parenthesized_expression] = STATE(1291), - [sym_concatenated_string] = STATE(1291), - [sym_string] = STATE(1047), - [sym_await] = STATE(1291), - [sym_identifier] = ACTIONS(780), + [sym_list_splat_pattern] = STATE(1427), + [sym_primary_expression] = STATE(1108), + [sym_binary_operator] = STATE(1304), + [sym_unary_operator] = STATE(1304), + [sym_attribute] = STATE(1304), + [sym_subscript] = STATE(1304), + [sym_call] = STATE(1304), + [sym_list] = STATE(1304), + [sym_set] = STATE(1304), + [sym_tuple] = STATE(1304), + [sym_dictionary] = STATE(1304), + [sym_list_comprehension] = STATE(1304), + [sym_dictionary_comprehension] = STATE(1304), + [sym_set_comprehension] = STATE(1304), + [sym_generator_expression] = STATE(1304), + [sym_parenthesized_expression] = STATE(1304), + [sym_concatenated_string] = STATE(1304), + [sym_string] = STATE(1009), + [sym_await] = STATE(1304), + [sym_identifier] = ACTIONS(750), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_print] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_print] = ACTIONS(756), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(786), - [anon_sym_async] = ACTIONS(786), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(756), + [anon_sym_async] = ACTIONS(756), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(786), - [anon_sym_type] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(756), + [anon_sym_type] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(760), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(762), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(762), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30257,84 +30574,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(796), - [sym_integer] = ACTIONS(780), - [sym_float] = ACTIONS(794), - [anon_sym_await] = ACTIONS(798), - [sym_true] = ACTIONS(780), - [sym_false] = ACTIONS(780), - [sym_none] = ACTIONS(780), + [sym_ellipsis] = ACTIONS(766), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(766), + [anon_sym_await] = ACTIONS(768), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(800), + [sym_string_start] = ACTIONS(770), }, - [180] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [178] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(666), + [anon_sym_as] = ACTIONS(671), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_if] = ACTIONS(671), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(671), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_RBRACK] = ACTIONS(666), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(312), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(312), + [anon_sym_not] = ACTIONS(671), + [anon_sym_and] = ACTIONS(671), + [anon_sym_or] = ACTIONS(671), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_LT] = ACTIONS(671), + [anon_sym_LT_EQ] = ACTIONS(666), + [anon_sym_EQ_EQ] = ACTIONS(666), + [anon_sym_BANG_EQ] = ACTIONS(666), + [anon_sym_GT_EQ] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(671), + [anon_sym_LT_GT] = ACTIONS(666), + [anon_sym_is] = ACTIONS(671), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), @@ -30342,59 +30658,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(324), }, - [181] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1133), - [sym_binary_operator] = STATE(1415), - [sym_unary_operator] = STATE(1415), - [sym_attribute] = STATE(1415), - [sym_subscript] = STATE(1415), - [sym_call] = STATE(1415), - [sym_list] = STATE(1415), - [sym_set] = STATE(1415), - [sym_tuple] = STATE(1415), - [sym_dictionary] = STATE(1415), - [sym_list_comprehension] = STATE(1415), - [sym_dictionary_comprehension] = STATE(1415), - [sym_set_comprehension] = STATE(1415), - [sym_generator_expression] = STATE(1415), - [sym_parenthesized_expression] = STATE(1415), - [sym_concatenated_string] = STATE(1415), - [sym_string] = STATE(1044), - [sym_await] = STATE(1415), - [sym_identifier] = ACTIONS(736), + [179] = { + [sym_list_splat_pattern] = STATE(1401), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1303), + [sym_unary_operator] = STATE(1303), + [sym_attribute] = STATE(1303), + [sym_subscript] = STATE(1303), + [sym_call] = STATE(1303), + [sym_list] = STATE(1303), + [sym_set] = STATE(1303), + [sym_tuple] = STATE(1303), + [sym_dictionary] = STATE(1303), + [sym_list_comprehension] = STATE(1303), + [sym_dictionary_comprehension] = STATE(1303), + [sym_set_comprehension] = STATE(1303), + [sym_generator_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string] = STATE(1034), + [sym_await] = STATE(1303), + [sym_identifier] = ACTIONS(726), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(728), [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_print] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_print] = ACTIONS(732), [anon_sym_GT_GT] = ACTIONS(277), + [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(742), - [anon_sym_async] = ACTIONS(742), + [anon_sym_match] = ACTIONS(732), + [anon_sym_async] = ACTIONS(732), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(742), - [anon_sym_type] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_exec] = ACTIONS(732), + [anon_sym_type] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(738), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(740), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30403,144 +30720,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(750), - [anon_sym_await] = ACTIONS(754), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(756), - }, - [182] = { - [sym_list_splat_pattern] = STATE(1495), - [sym_primary_expression] = STATE(1259), - [sym_binary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_attribute] = STATE(1452), - [sym_subscript] = STATE(1452), - [sym_call] = STATE(1452), - [sym_list] = STATE(1452), - [sym_set] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_dictionary] = STATE(1452), - [sym_list_comprehension] = STATE(1452), - [sym_dictionary_comprehension] = STATE(1452), - [sym_set_comprehension] = STATE(1452), - [sym_generator_expression] = STATE(1452), - [sym_parenthesized_expression] = STATE(1452), - [sym_concatenated_string] = STATE(1452), - [sym_string] = STATE(1057), - [sym_await] = STATE(1452), - [sym_identifier] = ACTIONS(802), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_COMMA] = ACTIONS(709), - [anon_sym_as] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_print] = ACTIONS(808), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_COLON_EQ] = ACTIONS(292), - [anon_sym_if] = ACTIONS(676), - [anon_sym_match] = ACTIONS(808), - [anon_sym_async] = ACTIONS(808), - [anon_sym_for] = ACTIONS(679), - [anon_sym_in] = ACTIONS(676), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(808), - [anon_sym_type] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(676), - [anon_sym_and] = ACTIONS(676), - [anon_sym_or] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(814), - [anon_sym_LT] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(709), - [anon_sym_EQ_EQ] = ACTIONS(709), - [anon_sym_BANG_EQ] = ACTIONS(709), - [anon_sym_GT_EQ] = ACTIONS(709), - [anon_sym_GT] = ACTIONS(676), - [anon_sym_LT_GT] = ACTIONS(709), - [anon_sym_is] = ACTIONS(676), - [sym_ellipsis] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [sym_integer] = ACTIONS(802), - [sym_float] = ACTIONS(816), - [anon_sym_await] = ACTIONS(820), - [sym_true] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_none] = ACTIONS(802), + [sym_ellipsis] = ACTIONS(744), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(822), + [sym_string_start] = ACTIONS(748), }, - [183] = { - [sym_list_splat_pattern] = STATE(1300), - [sym_primary_expression] = STATE(1133), - [sym_binary_operator] = STATE(1415), - [sym_unary_operator] = STATE(1415), - [sym_attribute] = STATE(1415), - [sym_subscript] = STATE(1415), - [sym_call] = STATE(1415), - [sym_list] = STATE(1415), - [sym_set] = STATE(1415), - [sym_tuple] = STATE(1415), - [sym_dictionary] = STATE(1415), - [sym_list_comprehension] = STATE(1415), - [sym_dictionary_comprehension] = STATE(1415), - [sym_set_comprehension] = STATE(1415), - [sym_generator_expression] = STATE(1415), - [sym_parenthesized_expression] = STATE(1415), - [sym_concatenated_string] = STATE(1415), - [sym_string] = STATE(1044), - [sym_await] = STATE(1415), - [sym_identifier] = ACTIONS(736), + [180] = { + [sym_list_splat_pattern] = STATE(1484), + [sym_primary_expression] = STATE(1193), + [sym_binary_operator] = STATE(1477), + [sym_unary_operator] = STATE(1477), + [sym_attribute] = STATE(1477), + [sym_subscript] = STATE(1477), + [sym_call] = STATE(1477), + [sym_list] = STATE(1477), + [sym_set] = STATE(1477), + [sym_tuple] = STATE(1477), + [sym_dictionary] = STATE(1477), + [sym_list_comprehension] = STATE(1477), + [sym_dictionary_comprehension] = STATE(1477), + [sym_set_comprehension] = STATE(1477), + [sym_generator_expression] = STATE(1477), + [sym_parenthesized_expression] = STATE(1477), + [sym_concatenated_string] = STATE(1477), + [sym_string] = STATE(1152), + [sym_await] = STATE(1477), + [sym_identifier] = ACTIONS(794), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(738), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(796), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_print] = ACTIONS(742), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_print] = ACTIONS(800), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(742), - [anon_sym_async] = ACTIONS(742), + [anon_sym_COLON] = ACTIONS(279), + [anon_sym_match] = ACTIONS(800), + [anon_sym_async] = ACTIONS(800), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(742), - [anon_sym_type] = ACTIONS(744), - [anon_sym_EQ] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_exec] = ACTIONS(800), + [anon_sym_type] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(804), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(806), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(748), + [anon_sym_TILDE] = ACTIONS(806), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30549,143 +30793,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(750), - [anon_sym_LBRACE] = ACTIONS(752), - [sym_integer] = ACTIONS(736), - [sym_float] = ACTIONS(750), - [anon_sym_await] = ACTIONS(754), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_none] = ACTIONS(736), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(756), - }, - [184] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(320), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(314), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_ellipsis] = ACTIONS(810), + [sym_integer] = ACTIONS(794), + [sym_float] = ACTIONS(810), + [anon_sym_await] = ACTIONS(812), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_none] = ACTIONS(794), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(314), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(814), }, - [185] = { - [sym_list_splat_pattern] = STATE(1239), - [sym_primary_expression] = STATE(1033), - [sym_binary_operator] = STATE(1193), - [sym_unary_operator] = STATE(1193), - [sym_attribute] = STATE(1193), - [sym_subscript] = STATE(1193), - [sym_call] = STATE(1193), - [sym_list] = STATE(1193), - [sym_set] = STATE(1193), - [sym_tuple] = STATE(1193), - [sym_dictionary] = STATE(1193), - [sym_list_comprehension] = STATE(1193), - [sym_dictionary_comprehension] = STATE(1193), - [sym_set_comprehension] = STATE(1193), - [sym_generator_expression] = STATE(1193), - [sym_parenthesized_expression] = STATE(1193), - [sym_concatenated_string] = STATE(1193), - [sym_string] = STATE(998), - [sym_await] = STATE(1193), - [sym_identifier] = ACTIONS(758), + [181] = { + [sym_list_splat_pattern] = STATE(1427), + [sym_primary_expression] = STATE(1108), + [sym_binary_operator] = STATE(1304), + [sym_unary_operator] = STATE(1304), + [sym_attribute] = STATE(1304), + [sym_subscript] = STATE(1304), + [sym_call] = STATE(1304), + [sym_list] = STATE(1304), + [sym_set] = STATE(1304), + [sym_tuple] = STATE(1304), + [sym_dictionary] = STATE(1304), + [sym_list_comprehension] = STATE(1304), + [sym_dictionary_comprehension] = STATE(1304), + [sym_set_comprehension] = STATE(1304), + [sym_generator_expression] = STATE(1304), + [sym_parenthesized_expression] = STATE(1304), + [sym_concatenated_string] = STATE(1304), + [sym_string] = STATE(1009), + [sym_await] = STATE(1304), + [sym_identifier] = ACTIONS(750), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_print] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_print] = ACTIONS(756), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(764), - [anon_sym_async] = ACTIONS(764), - [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(756), + [anon_sym_async] = ACTIONS(756), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_exec] = ACTIONS(756), + [anon_sym_type] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(760), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(762), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(762), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30694,72 +30866,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(772), - [anon_sym_LBRACE] = ACTIONS(774), - [anon_sym_RBRACE] = ACTIONS(277), - [sym_integer] = ACTIONS(758), - [sym_float] = ACTIONS(772), - [anon_sym_await] = ACTIONS(776), - [sym_true] = ACTIONS(758), - [sym_false] = ACTIONS(758), - [sym_none] = ACTIONS(758), + [sym_ellipsis] = ACTIONS(766), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(766), + [anon_sym_await] = ACTIONS(768), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(778), + [sym_string_start] = ACTIONS(770), }, - [186] = { - [sym_list_splat_pattern] = STATE(1495), - [sym_primary_expression] = STATE(1259), - [sym_binary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_attribute] = STATE(1452), - [sym_subscript] = STATE(1452), - [sym_call] = STATE(1452), - [sym_list] = STATE(1452), - [sym_set] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_dictionary] = STATE(1452), - [sym_list_comprehension] = STATE(1452), - [sym_dictionary_comprehension] = STATE(1452), - [sym_set_comprehension] = STATE(1452), - [sym_generator_expression] = STATE(1452), - [sym_parenthesized_expression] = STATE(1452), - [sym_concatenated_string] = STATE(1452), - [sym_string] = STATE(1057), - [sym_await] = STATE(1452), - [sym_identifier] = ACTIONS(802), + [182] = { + [sym_list_splat_pattern] = STATE(1427), + [sym_primary_expression] = STATE(1108), + [sym_binary_operator] = STATE(1304), + [sym_unary_operator] = STATE(1304), + [sym_attribute] = STATE(1304), + [sym_subscript] = STATE(1304), + [sym_call] = STATE(1304), + [sym_list] = STATE(1304), + [sym_set] = STATE(1304), + [sym_tuple] = STATE(1304), + [sym_dictionary] = STATE(1304), + [sym_list_comprehension] = STATE(1304), + [sym_dictionary_comprehension] = STATE(1304), + [sym_set_comprehension] = STATE(1304), + [sym_generator_expression] = STATE(1304), + [sym_parenthesized_expression] = STATE(1304), + [sym_concatenated_string] = STATE(1304), + [sym_string] = STATE(1009), + [sym_await] = STATE(1304), + [sym_identifier] = ACTIONS(750), + [anon_sym_DOT] = ACTIONS(668), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_COMMA] = ACTIONS(679), + [anon_sym_as] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(754), + [anon_sym_print] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_COLON_EQ] = ACTIONS(292), + [anon_sym_if] = ACTIONS(668), + [anon_sym_match] = ACTIONS(756), + [anon_sym_async] = ACTIONS(756), + [anon_sym_for] = ACTIONS(671), + [anon_sym_in] = ACTIONS(668), + [anon_sym_STAR_STAR] = ACTIONS(679), + [anon_sym_exec] = ACTIONS(756), + [anon_sym_type] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(679), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(679), + [anon_sym_LBRACE] = ACTIONS(764), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_not] = ACTIONS(668), + [anon_sym_and] = ACTIONS(668), + [anon_sym_or] = ACTIONS(668), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(679), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_CARET] = ACTIONS(679), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(668), + [anon_sym_LT_EQ] = ACTIONS(679), + [anon_sym_EQ_EQ] = ACTIONS(679), + [anon_sym_BANG_EQ] = ACTIONS(679), + [anon_sym_GT_EQ] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(668), + [anon_sym_LT_GT] = ACTIONS(679), + [anon_sym_is] = ACTIONS(668), + [sym_ellipsis] = ACTIONS(766), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(766), + [anon_sym_await] = ACTIONS(768), + [sym_true] = ACTIONS(750), + [sym_false] = ACTIONS(750), + [sym_none] = ACTIONS(750), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(770), + }, + [183] = { + [sym_list_splat_pattern] = STATE(1401), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1303), + [sym_unary_operator] = STATE(1303), + [sym_attribute] = STATE(1303), + [sym_subscript] = STATE(1303), + [sym_call] = STATE(1303), + [sym_list] = STATE(1303), + [sym_set] = STATE(1303), + [sym_tuple] = STATE(1303), + [sym_dictionary] = STATE(1303), + [sym_list_comprehension] = STATE(1303), + [sym_dictionary_comprehension] = STATE(1303), + [sym_set_comprehension] = STATE(1303), + [sym_generator_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string] = STATE(1034), + [sym_await] = STATE(1303), + [sym_identifier] = ACTIONS(726), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(804), - [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(284), + [anon_sym_COMMA] = ACTIONS(284), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_print] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_print] = ACTIONS(732), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_COLON_EQ] = ACTIONS(292), [anon_sym_if] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(279), - [anon_sym_match] = ACTIONS(808), - [anon_sym_async] = ACTIONS(808), + [anon_sym_match] = ACTIONS(732), + [anon_sym_async] = ACTIONS(732), + [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(808), - [anon_sym_type] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(812), - [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(732), + [anon_sym_type] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(738), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(740), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30768,143 +31012,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [sym_integer] = ACTIONS(802), - [sym_float] = ACTIONS(816), - [anon_sym_await] = ACTIONS(820), - [sym_true] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_none] = ACTIONS(802), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(822), - }, - [187] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), - [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), - [anon_sym_as] = ACTIONS(679), - [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(709), - [anon_sym_if] = ACTIONS(679), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_else] = ACTIONS(679), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_in] = ACTIONS(679), - [anon_sym_STAR_STAR] = ACTIONS(709), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_not] = ACTIONS(679), - [anon_sym_and] = ACTIONS(679), - [anon_sym_or] = ACTIONS(679), - [anon_sym_PLUS] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(310), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(709), - [anon_sym_SLASH_SLASH] = ACTIONS(709), - [anon_sym_PIPE] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_LT_LT] = ACTIONS(709), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(674), - [anon_sym_EQ_EQ] = ACTIONS(674), - [anon_sym_BANG_EQ] = ACTIONS(674), - [anon_sym_GT_EQ] = ACTIONS(674), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_LT_GT] = ACTIONS(674), - [anon_sym_is] = ACTIONS(679), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), - [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), - [sym_true] = ACTIONS(320), - [sym_false] = ACTIONS(320), - [sym_none] = ACTIONS(320), + [sym_ellipsis] = ACTIONS(744), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(324), + [sym_string_start] = ACTIONS(748), }, - [188] = { - [sym_list_splat_pattern] = STATE(1400), - [sym_primary_expression] = STATE(1058), - [sym_binary_operator] = STATE(1291), - [sym_unary_operator] = STATE(1291), - [sym_attribute] = STATE(1291), - [sym_subscript] = STATE(1291), - [sym_call] = STATE(1291), - [sym_list] = STATE(1291), - [sym_set] = STATE(1291), - [sym_tuple] = STATE(1291), - [sym_dictionary] = STATE(1291), - [sym_list_comprehension] = STATE(1291), - [sym_dictionary_comprehension] = STATE(1291), - [sym_set_comprehension] = STATE(1291), - [sym_generator_expression] = STATE(1291), - [sym_parenthesized_expression] = STATE(1291), - [sym_concatenated_string] = STATE(1291), - [sym_string] = STATE(1047), - [sym_await] = STATE(1291), - [sym_identifier] = ACTIONS(780), + [184] = { + [sym_list_splat_pattern] = STATE(1401), + [sym_primary_expression] = STATE(1096), + [sym_binary_operator] = STATE(1303), + [sym_unary_operator] = STATE(1303), + [sym_attribute] = STATE(1303), + [sym_subscript] = STATE(1303), + [sym_call] = STATE(1303), + [sym_list] = STATE(1303), + [sym_set] = STATE(1303), + [sym_tuple] = STATE(1303), + [sym_dictionary] = STATE(1303), + [sym_list_comprehension] = STATE(1303), + [sym_dictionary_comprehension] = STATE(1303), + [sym_set_comprehension] = STATE(1303), + [sym_generator_expression] = STATE(1303), + [sym_parenthesized_expression] = STATE(1303), + [sym_concatenated_string] = STATE(1303), + [sym_string] = STATE(1034), + [sym_await] = STATE(1303), + [sym_identifier] = ACTIONS(726), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_LPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(277), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(784), - [anon_sym_print] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(730), + [anon_sym_print] = ACTIONS(732), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(786), - [anon_sym_async] = ACTIONS(786), + [anon_sym_match] = ACTIONS(732), + [anon_sym_async] = ACTIONS(732), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(786), - [anon_sym_type] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_exec] = ACTIONS(732), + [anon_sym_type] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(738), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(792), - [anon_sym_DASH] = ACTIONS(792), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_TILDE] = ACTIONS(740), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30913,70 +31084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(796), - [sym_integer] = ACTIONS(780), - [sym_float] = ACTIONS(794), - [anon_sym_await] = ACTIONS(798), - [sym_true] = ACTIONS(780), - [sym_false] = ACTIONS(780), - [sym_none] = ACTIONS(780), + [sym_ellipsis] = ACTIONS(744), + [sym_integer] = ACTIONS(726), + [sym_float] = ACTIONS(744), + [anon_sym_await] = ACTIONS(746), + [sym_true] = ACTIONS(726), + [sym_false] = ACTIONS(726), + [sym_none] = ACTIONS(726), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(800), - }, - [189] = { - [sym_list_splat_pattern] = STATE(1420), - [sym_primary_expression] = STATE(1054), - [sym_binary_operator] = STATE(1298), - [sym_unary_operator] = STATE(1298), - [sym_attribute] = STATE(1298), - [sym_subscript] = STATE(1298), - [sym_call] = STATE(1298), - [sym_list] = STATE(1298), - [sym_set] = STATE(1298), - [sym_tuple] = STATE(1298), - [sym_dictionary] = STATE(1298), - [sym_list_comprehension] = STATE(1298), - [sym_dictionary_comprehension] = STATE(1298), - [sym_set_comprehension] = STATE(1298), - [sym_generator_expression] = STATE(1298), - [sym_parenthesized_expression] = STATE(1298), - [sym_concatenated_string] = STATE(1298), - [sym_string] = STATE(1024), - [sym_await] = STATE(1298), - [sym_identifier] = ACTIONS(712), + [sym_string_start] = ACTIONS(748), + }, + [185] = { + [sym_list_splat_pattern] = STATE(1310), + [sym_primary_expression] = STATE(1146), + [sym_binary_operator] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_attribute] = STATE(1279), + [sym_subscript] = STATE(1279), + [sym_call] = STATE(1279), + [sym_list] = STATE(1279), + [sym_set] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_dictionary] = STATE(1279), + [sym_list_comprehension] = STATE(1279), + [sym_dictionary_comprehension] = STATE(1279), + [sym_set_comprehension] = STATE(1279), + [sym_generator_expression] = STATE(1279), + [sym_parenthesized_expression] = STATE(1279), + [sym_concatenated_string] = STATE(1279), + [sym_string] = STATE(1011), + [sym_await] = STATE(1279), + [sym_identifier] = ACTIONS(772), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(774), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_print] = ACTIONS(718), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_print] = ACTIONS(778), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), - [anon_sym_match] = ACTIONS(718), - [anon_sym_async] = ACTIONS(718), + [anon_sym_match] = ACTIONS(778), + [anon_sym_async] = ACTIONS(778), [anon_sym_for] = ACTIONS(279), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(718), - [anon_sym_type] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_exec] = ACTIONS(778), + [anon_sym_type] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(784), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_DASH] = ACTIONS(726), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(726), + [anon_sym_TILDE] = ACTIONS(784), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -30985,70 +31156,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), - [sym_integer] = ACTIONS(712), - [sym_float] = ACTIONS(728), - [anon_sym_await] = ACTIONS(732), - [sym_true] = ACTIONS(712), - [sym_false] = ACTIONS(712), - [sym_none] = ACTIONS(712), + [sym_ellipsis] = ACTIONS(788), + [sym_integer] = ACTIONS(772), + [sym_float] = ACTIONS(788), + [anon_sym_await] = ACTIONS(790), + [sym_true] = ACTIONS(772), + [sym_false] = ACTIONS(772), + [sym_none] = ACTIONS(772), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(734), - }, - [190] = { - [sym_list_splat_pattern] = STATE(1495), - [sym_primary_expression] = STATE(1259), - [sym_binary_operator] = STATE(1452), - [sym_unary_operator] = STATE(1452), - [sym_attribute] = STATE(1452), - [sym_subscript] = STATE(1452), - [sym_call] = STATE(1452), - [sym_list] = STATE(1452), - [sym_set] = STATE(1452), - [sym_tuple] = STATE(1452), - [sym_dictionary] = STATE(1452), - [sym_list_comprehension] = STATE(1452), - [sym_dictionary_comprehension] = STATE(1452), - [sym_set_comprehension] = STATE(1452), - [sym_generator_expression] = STATE(1452), - [sym_parenthesized_expression] = STATE(1452), - [sym_concatenated_string] = STATE(1452), - [sym_string] = STATE(1057), - [sym_await] = STATE(1452), - [sym_identifier] = ACTIONS(802), + [sym_string_start] = ACTIONS(792), + }, + [186] = { + [sym_list_splat_pattern] = STATE(1484), + [sym_primary_expression] = STATE(1193), + [sym_binary_operator] = STATE(1477), + [sym_unary_operator] = STATE(1477), + [sym_attribute] = STATE(1477), + [sym_subscript] = STATE(1477), + [sym_call] = STATE(1477), + [sym_list] = STATE(1477), + [sym_set] = STATE(1477), + [sym_tuple] = STATE(1477), + [sym_dictionary] = STATE(1477), + [sym_list_comprehension] = STATE(1477), + [sym_dictionary_comprehension] = STATE(1477), + [sym_set_comprehension] = STATE(1477), + [sym_generator_expression] = STATE(1477), + [sym_parenthesized_expression] = STATE(1477), + [sym_concatenated_string] = STATE(1477), + [sym_string] = STATE(1152), + [sym_await] = STATE(1477), + [sym_identifier] = ACTIONS(794), [anon_sym_DOT] = ACTIONS(279), - [anon_sym_LPAREN] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(796), [anon_sym_COMMA] = ACTIONS(277), [anon_sym_as] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(806), - [anon_sym_print] = ACTIONS(808), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_print] = ACTIONS(800), [anon_sym_GT_GT] = ACTIONS(277), [anon_sym_if] = ACTIONS(279), [anon_sym_COLON] = ACTIONS(277), - [anon_sym_match] = ACTIONS(808), - [anon_sym_async] = ACTIONS(808), + [anon_sym_match] = ACTIONS(800), + [anon_sym_async] = ACTIONS(800), [anon_sym_in] = ACTIONS(279), [anon_sym_STAR_STAR] = ACTIONS(277), - [anon_sym_exec] = ACTIONS(808), - [anon_sym_type] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(812), + [anon_sym_exec] = ACTIONS(800), + [anon_sym_type] = ACTIONS(802), + [anon_sym_LBRACK] = ACTIONS(804), [anon_sym_RBRACK] = ACTIONS(277), [anon_sym_AT] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(806), [anon_sym_not] = ACTIONS(279), [anon_sym_and] = ACTIONS(279), [anon_sym_or] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), [anon_sym_SLASH] = ACTIONS(279), [anon_sym_PERCENT] = ACTIONS(277), [anon_sym_SLASH_SLASH] = ACTIONS(277), - [anon_sym_PIPE] = ACTIONS(277), [anon_sym_AMP] = ACTIONS(277), [anon_sym_CARET] = ACTIONS(277), [anon_sym_LT_LT] = ACTIONS(277), - [anon_sym_TILDE] = ACTIONS(814), + [anon_sym_TILDE] = ACTIONS(806), [anon_sym_LT] = ACTIONS(279), [anon_sym_LT_EQ] = ACTIONS(277), [anon_sym_EQ_EQ] = ACTIONS(277), @@ -31057,82 +31228,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(279), [anon_sym_LT_GT] = ACTIONS(277), [anon_sym_is] = ACTIONS(279), - [sym_ellipsis] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(818), - [sym_integer] = ACTIONS(802), - [sym_float] = ACTIONS(816), - [anon_sym_await] = ACTIONS(820), - [sym_true] = ACTIONS(802), - [sym_false] = ACTIONS(802), - [sym_none] = ACTIONS(802), + [sym_ellipsis] = ACTIONS(810), + [sym_integer] = ACTIONS(794), + [sym_float] = ACTIONS(810), + [anon_sym_await] = ACTIONS(812), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_none] = ACTIONS(794), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(822), - }, - [191] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [sym_string_start] = ACTIONS(814), + }, + [187] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(279), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(674), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(676), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(674), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(316), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(316), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(676), - [anon_sym_PERCENT] = ACTIONS(676), - [anon_sym_SLASH_SLASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(676), - [anon_sym_CARET] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(676), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(674), - [anon_sym_DASH_EQ] = ACTIONS(674), - [anon_sym_STAR_EQ] = ACTIONS(674), - [anon_sym_SLASH_EQ] = ACTIONS(674), - [anon_sym_AT_EQ] = ACTIONS(674), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(674), - [anon_sym_PERCENT_EQ] = ACTIONS(674), - [anon_sym_STAR_STAR_EQ] = ACTIONS(674), - [anon_sym_GT_GT_EQ] = ACTIONS(674), - [anon_sym_LT_LT_EQ] = ACTIONS(674), - [anon_sym_AMP_EQ] = ACTIONS(674), - [anon_sym_CARET_EQ] = ACTIONS(674), - [anon_sym_PIPE_EQ] = ACTIONS(674), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_PERCENT] = ACTIONS(279), + [anon_sym_SLASH_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(279), + [anon_sym_LT_LT] = ACTIONS(279), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_AT_EQ] = ACTIONS(316), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_STAR_STAR_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), @@ -31140,70 +31310,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(324), }, - [192] = { - [sym_list_splat_pattern] = STATE(1324), - [sym_primary_expression] = STATE(1135), - [sym_binary_operator] = STATE(1365), - [sym_unary_operator] = STATE(1365), - [sym_attribute] = STATE(1365), - [sym_subscript] = STATE(1365), - [sym_call] = STATE(1365), - [sym_list] = STATE(1365), - [sym_set] = STATE(1365), - [sym_tuple] = STATE(1365), - [sym_dictionary] = STATE(1365), - [sym_list_comprehension] = STATE(1365), - [sym_dictionary_comprehension] = STATE(1365), - [sym_set_comprehension] = STATE(1365), - [sym_generator_expression] = STATE(1365), - [sym_parenthesized_expression] = STATE(1365), - [sym_concatenated_string] = STATE(1365), - [sym_string] = STATE(1032), - [sym_await] = STATE(1365), + [188] = { + [sym_list_splat_pattern] = STATE(1323), + [sym_primary_expression] = STATE(1078), + [sym_binary_operator] = STATE(1282), + [sym_unary_operator] = STATE(1282), + [sym_attribute] = STATE(1282), + [sym_subscript] = STATE(1282), + [sym_call] = STATE(1282), + [sym_list] = STATE(1282), + [sym_set] = STATE(1282), + [sym_tuple] = STATE(1282), + [sym_dictionary] = STATE(1282), + [sym_list_comprehension] = STATE(1282), + [sym_dictionary_comprehension] = STATE(1282), + [sym_set_comprehension] = STATE(1282), + [sym_generator_expression] = STATE(1282), + [sym_parenthesized_expression] = STATE(1282), + [sym_concatenated_string] = STATE(1282), + [sym_string] = STATE(1007), + [sym_await] = STATE(1282), [sym_identifier] = ACTIONS(320), - [anon_sym_DOT] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(668), [anon_sym_LPAREN] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(314), + [anon_sym_COMMA] = ACTIONS(666), [anon_sym_STAR] = ACTIONS(410), - [anon_sym_print] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(279), - [anon_sym_COLON] = ACTIONS(314), - [anon_sym_match] = ACTIONS(681), - [anon_sym_async] = ACTIONS(681), - [anon_sym_STAR_STAR] = ACTIONS(279), - [anon_sym_exec] = ACTIONS(681), - [anon_sym_type] = ACTIONS(683), - [anon_sym_EQ] = ACTIONS(314), + [anon_sym_print] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(668), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_match] = ACTIONS(673), + [anon_sym_async] = ACTIONS(673), + [anon_sym_STAR_STAR] = ACTIONS(668), + [anon_sym_exec] = ACTIONS(673), + [anon_sym_type] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(666), [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_AT] = ACTIONS(279), - [anon_sym_PLUS] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(416), - [anon_sym_SLASH] = ACTIONS(279), - [anon_sym_PERCENT] = ACTIONS(279), - [anon_sym_SLASH_SLASH] = ACTIONS(279), - [anon_sym_PIPE] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(279), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_LT_LT] = ACTIONS(279), - [anon_sym_TILDE] = ACTIONS(310), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_AT_EQ] = ACTIONS(314), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_STAR_STAR_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [sym_ellipsis] = ACTIONS(316), - [anon_sym_LBRACE] = ACTIONS(318), + [anon_sym_AT] = ACTIONS(668), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(414), + [anon_sym_SLASH] = ACTIONS(668), + [anon_sym_PERCENT] = ACTIONS(668), + [anon_sym_SLASH_SLASH] = ACTIONS(668), + [anon_sym_AMP] = ACTIONS(668), + [anon_sym_CARET] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(312), + [anon_sym_PLUS_EQ] = ACTIONS(666), + [anon_sym_DASH_EQ] = ACTIONS(666), + [anon_sym_STAR_EQ] = ACTIONS(666), + [anon_sym_SLASH_EQ] = ACTIONS(666), + [anon_sym_AT_EQ] = ACTIONS(666), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(666), + [anon_sym_PERCENT_EQ] = ACTIONS(666), + [anon_sym_STAR_STAR_EQ] = ACTIONS(666), + [anon_sym_GT_GT_EQ] = ACTIONS(666), + [anon_sym_LT_LT_EQ] = ACTIONS(666), + [anon_sym_AMP_EQ] = ACTIONS(666), + [anon_sym_CARET_EQ] = ACTIONS(666), + [anon_sym_PIPE_EQ] = ACTIONS(666), + [sym_ellipsis] = ACTIONS(318), [sym_integer] = ACTIONS(320), - [sym_float] = ACTIONS(316), - [anon_sym_await] = ACTIONS(685), + [sym_float] = ACTIONS(318), + [anon_sym_await] = ACTIONS(677), [sym_true] = ACTIONS(320), [sym_false] = ACTIONS(320), [sym_none] = ACTIONS(320), @@ -31214,76 +31384,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [0] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(828), 1, - anon_sym_COMMA, - ACTIONS(830), 1, + ACTIONS(820), 1, + anon_sym_RPAREN, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(844), 1, - anon_sym_RBRACE, - ACTIONS(846), 1, + ACTIONS(836), 1, anon_sym_await, - STATE(995), 1, + STATE(1031), 1, sym_primary_expression, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1239), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1624), 1, + STATE(1701), 1, sym_expression, - STATE(1786), 1, - sym_pair, - STATE(2191), 1, - sym_dictionary_splat, - STATE(2349), 1, + STATE(2260), 1, + sym_yield, + STATE(2275), 1, + sym_pattern, + STATE(2743), 1, sym__named_expression_lhs, - STATE(2443), 1, + STATE(2751), 1, + sym__patterns, + STATE(2814), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(2080), 3, + STATE(1299), 2, + sym_attribute, + sym_subscript, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - ACTIONS(758), 4, + STATE(2531), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(740), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31291,11 +31464,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31308,78 +31479,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [124] = 30, - ACTIONS(796), 1, + [126] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(860), 1, - anon_sym_RBRACK, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(836), 1, anon_sym_await, - STATE(1045), 1, + ACTIONS(838), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1294), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1646), 1, + STATE(1717), 1, sym_expression, - STATE(2039), 1, + STATE(2275), 1, sym_pattern, - STATE(2367), 1, - sym__patterns, - STATE(2411), 1, + STATE(2279), 1, + sym_yield, + STATE(2743), 1, sym__named_expression_lhs, - STATE(2505), 1, + STATE(2753), 1, sym__collection_elements, + STATE(2760), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31387,7 +31559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31402,79 +31574,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [248] = 31, - ACTIONS(730), 1, + [252] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(874), 1, - anon_sym_RPAREN, - ACTIONS(876), 1, + ACTIONS(844), 1, + anon_sym_COMMA, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(882), 1, - anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(854), 1, + anon_sym_RBRACE, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(862), 1, anon_sym_await, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(979), 1, sym_primary_expression, - STATE(1391), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1630), 1, + STATE(1679), 1, sym_expression, - STATE(2056), 1, - sym_pattern, - STATE(2239), 1, - sym_yield, - STATE(2478), 1, - sym__patterns, - STATE(2504), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(1862), 1, + sym_pair, + STATE(2269), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, + STATE(2780), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1349), 2, - sym_attribute, - sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2412), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31482,9 +31651,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31497,79 +31668,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [374] = 31, - ACTIONS(730), 1, + [376] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(882), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(892), 1, + ACTIONS(864), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1034), 1, + sym_string, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1644), 1, + STATE(1701), 1, sym_expression, - STATE(2056), 1, - sym_pattern, - STATE(2062), 1, + STATE(2260), 1, sym_yield, - STATE(2465), 1, - sym__collection_elements, - STATE(2478), 1, + STATE(2275), 1, + sym_pattern, + STATE(2689), 1, sym__patterns, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2053), 2, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2258), 2, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31577,7 +31748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31592,80 +31763,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [500] = 32, - ACTIONS(730), 1, + [502] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(882), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(894), 1, + ACTIONS(866), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1034), 1, + sym_string, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1637), 1, + STATE(1701), 1, sym_expression, - STATE(2056), 1, - sym_pattern, - STATE(2074), 1, + STATE(2260), 1, sym_yield, - STATE(2237), 1, - sym_parenthesized_list_splat, - STATE(2241), 1, - sym_list_splat, - STATE(2375), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2275), 1, + sym_pattern, + STATE(2743), 1, sym__named_expression_lhs, - STATE(2542), 1, + STATE(2760), 1, sym__patterns, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2258), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31673,7 +31843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31689,75 +31859,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [628] = 30, - ACTIONS(768), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(896), 1, + ACTIONS(868), 1, anon_sym_COMMA, - ACTIONS(898), 1, + ACTIONS(870), 1, anon_sym_RBRACE, - STATE(995), 1, + STATE(979), 1, sym_primary_expression, - STATE(998), 1, + STATE(987), 1, sym_string, - STATE(1239), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1627), 1, + STATE(1680), 1, sym_expression, - STATE(1783), 1, + STATE(1891), 1, sym_pair, - STATE(2051), 1, + STATE(2417), 1, sym_dictionary_splat, - STATE(2349), 1, - sym__named_expression_lhs, - STATE(2479), 1, + STATE(2634), 1, sym__collection_elements, + STATE(2669), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, + STATE(2412), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(758), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31765,7 +31935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31783,75 +31953,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [752] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(884), 1, + anon_sym_RBRACK, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(900), 1, - anon_sym_COMMA, - ACTIONS(902), 1, - anon_sym_RBRACE, - STATE(995), 1, + STATE(1010), 1, sym_primary_expression, - STATE(998), 1, + STATE(1011), 1, sym_string, - STATE(1239), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1623), 1, + STATE(1702), 1, sym_expression, - STATE(1792), 1, - sym_pair, - STATE(2209), 1, - sym_dictionary_splat, - STATE(2349), 1, + STATE(2258), 1, + sym_pattern, + STATE(2688), 1, sym__named_expression_lhs, - STATE(2451), 1, + STATE(2777), 1, + sym__patterns, + STATE(2778), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1416), 2, + sym_attribute, + sym_subscript, + STATE(2616), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(758), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31859,11 +32031,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -31877,77 +32047,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [876] = 30, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(904), 1, + ACTIONS(894), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1294), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1649), 1, + STATE(1703), 1, sym_expression, - STATE(2039), 1, + STATE(2258), 1, sym_pattern, - STATE(2361), 1, + STATE(2688), 1, + sym__named_expression_lhs, + STATE(2790), 1, sym__collection_elements, - STATE(2367), 1, + STATE(2792), 1, sym__patterns, - STATE(2411), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31955,7 +32125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31970,78 +32140,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1000] = 30, - ACTIONS(796), 1, + [1000] = 32, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(906), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(896), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1294), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1709), 1, sym_expression, - STATE(2039), 1, + STATE(2275), 1, sym_pattern, - STATE(2410), 1, - sym__patterns, - STATE(2411), 1, + STATE(2479), 1, + sym_yield, + STATE(2482), 1, + sym_list_splat, + STATE(2489), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, sym__named_expression_lhs, - STATE(2493), 1, + STATE(2751), 1, + sym__patterns, + STATE(2765), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32049,7 +32221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32064,78 +32236,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1124] = 30, - ACTIONS(796), 1, + [1128] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(908), 1, + ACTIONS(898), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1294), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1712), 1, sym_expression, - STATE(2039), 1, + STATE(2258), 1, sym_pattern, - STATE(2399), 1, - sym__patterns, - STATE(2411), 1, - sym__named_expression_lhs, - STATE(2493), 1, + STATE(2676), 1, sym__collection_elements, + STATE(2688), 1, + sym__named_expression_lhs, + STATE(2792), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32143,7 +32315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32158,78 +32330,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1248] = 30, - ACTIONS(796), 1, + [1252] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(858), 1, - anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(910), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(900), 1, + anon_sym_COMMA, + ACTIONS(902), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1294), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1681), 1, sym_expression, - STATE(2039), 1, - sym_pattern, - STATE(2367), 1, - sym__patterns, - STATE(2411), 1, + STATE(1872), 1, + sym_pair, + STATE(2371), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2493), 1, + STATE(2673), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1296), 2, - sym_attribute, - sym_subscript, - STATE(2299), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2412), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32237,9 +32407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32252,79 +32424,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1372] = 31, - ACTIONS(730), 1, + [1376] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(882), 1, - anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(912), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(904), 1, + anon_sym_COMMA, + ACTIONS(906), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1391), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1644), 1, + STATE(1683), 1, sym_expression, - STATE(2056), 1, - sym_pattern, - STATE(2062), 1, - sym_yield, - STATE(2465), 1, - sym__collection_elements, - STATE(2478), 1, - sym__patterns, - STATE(2534), 1, + STATE(1865), 1, + sym_pair, + STATE(2466), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, + STATE(2724), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1349), 2, - sym_attribute, - sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2412), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32332,9 +32501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32347,79 +32518,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1498] = 31, - ACTIONS(730), 1, + [1500] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(882), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(914), 1, + ACTIONS(908), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1034), 1, + sym_string, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1717), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, + STATE(2275), 1, sym_pattern, - STATE(2514), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2279), 1, + sym_yield, + STATE(2743), 1, sym__named_expression_lhs, - STATE(2542), 1, + STATE(2753), 1, + sym__collection_elements, + STATE(2760), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2053), 2, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2258), 2, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32427,7 +32598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32442,14 +32613,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1624] = 31, - ACTIONS(730), 1, + [1626] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(870), 1, - sym_identifier, ACTIONS(872), 1, + sym_identifier, + ACTIONS(874), 1, anon_sym_LPAREN, ACTIONS(876), 1, anon_sym_STAR, @@ -32457,54 +32628,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(884), 1, - anon_sym_not, ACTIONS(886), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(888), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(916), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(910), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1011), 1, + sym_string, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1703), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, + STATE(2258), 1, sym_pattern, - STATE(2478), 1, + STATE(2659), 1, sym__patterns, - STATE(2514), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2264), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, @@ -32514,7 +32684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32522,7 +32692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32546,49 +32716,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(65), 1, - anon_sym_not, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(79), 1, anon_sym_await, ACTIONS(81), 1, sym_string_start, - ACTIONS(918), 1, + ACTIONS(912), 1, anon_sym_type, - STATE(628), 1, + STATE(626), 1, sym_list_splat_pattern, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1030), 1, + STATE(998), 1, sym_primary_expression, - STATE(1601), 1, + STATE(1651), 1, sym_pattern, - STATE(1602), 1, + STATE(1655), 1, sym_pattern_list, - STATE(1761), 1, + STATE(1848), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(642), 2, + STATE(619), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -32600,13 +32770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2277), 5, + STATE(2598), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32614,7 +32784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 14, + STATE(1077), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32629,78 +32799,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1870] = 30, - ACTIONS(796), 1, + [1870] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(920), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(914), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1294), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1701), 1, sym_expression, - STATE(2039), 1, + STATE(2260), 1, + sym_yield, + STATE(2275), 1, sym_pattern, - STATE(2346), 1, - sym__collection_elements, - STATE(2411), 1, - sym__named_expression_lhs, - STATE(2499), 1, + STATE(2684), 1, sym__patterns, + STATE(2743), 1, + sym__named_expression_lhs, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32708,7 +32879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -32723,78 +32894,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1994] = 30, - ACTIONS(796), 1, + [1996] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(858), 1, - anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(922), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(916), 1, + anon_sym_COMMA, + ACTIONS(918), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1294), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1647), 1, + STATE(1689), 1, sym_expression, - STATE(2039), 1, - sym_pattern, - STATE(2389), 1, - sym__patterns, - STATE(2411), 1, + STATE(1900), 1, + sym_pair, + STATE(2257), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2434), 1, + STATE(2696), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1296), 2, - sym_attribute, - sym_subscript, - STATE(2299), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2412), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32802,9 +32971,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32817,76 +32988,80 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2118] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [2120] = 32, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(828), 1, + anon_sym_LBRACK, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(924), 1, - anon_sym_COMMA, - ACTIONS(926), 1, - anon_sym_RBRACE, - STATE(995), 1, + ACTIONS(920), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1239), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1628), 1, + STATE(1695), 1, sym_expression, - STATE(1813), 1, - sym_pair, - STATE(2127), 1, - sym_dictionary_splat, - STATE(2349), 1, - sym__named_expression_lhs, - STATE(2388), 1, + STATE(2275), 1, + sym_pattern, + STATE(2361), 1, + sym_yield, + STATE(2486), 1, + sym_parenthesized_list_splat, + STATE(2488), 1, + sym_list_splat, + STATE(2683), 1, sym__collection_elements, + STATE(2743), 1, + sym__named_expression_lhs, + STATE(2818), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1299), 2, + sym_attribute, + sym_subscript, + STATE(2531), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(758), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32894,11 +33069,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32911,76 +33084,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2242] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, + [2248] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(928), 1, - anon_sym_COMMA, - ACTIONS(930), 1, - anon_sym_RBRACE, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, - sym_string, - STATE(1239), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(912), 1, + anon_sym_type, + STATE(626), 1, sym_list_splat_pattern, - STATE(1622), 1, + STATE(968), 1, + sym_string, + STATE(998), 1, + sym_primary_expression, + STATE(1651), 1, + sym_pattern, + STATE(1655), 1, + sym_pattern_list, + STATE(1848), 1, sym_expression, - STATE(1806), 1, - sym_pair, - STATE(2171), 1, - sym_dictionary_splat, - STATE(2349), 1, + STATE(2795), 1, sym__named_expression_lhs, - STATE(2360), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(619), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(758), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(418), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(2520), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32988,11 +33161,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1077), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33005,76 +33176,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2366] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [2368] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(932), 1, - anon_sym_COMMA, - ACTIONS(934), 1, - anon_sym_RBRACE, - STATE(995), 1, + ACTIONS(922), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(998), 1, + STATE(1011), 1, sym_string, - STATE(1239), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1625), 1, + STATE(1703), 1, sym_expression, - STATE(1784), 1, - sym_pair, - STATE(2247), 1, - sym_dictionary_splat, - STATE(2349), 1, + STATE(2258), 1, + sym_pattern, + STATE(2659), 1, + sym__patterns, + STATE(2688), 1, sym__named_expression_lhs, - STATE(2512), 1, + STATE(2790), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1416), 2, + sym_attribute, + sym_subscript, + STATE(2616), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(758), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33082,11 +33255,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33099,78 +33270,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2490] = 30, - ACTIONS(796), 1, + [2492] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(936), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(924), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1294), 1, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1649), 1, + STATE(1701), 1, sym_expression, - STATE(2039), 1, + STATE(2260), 1, + sym_yield, + STATE(2275), 1, sym_pattern, - STATE(2361), 1, - sym__collection_elements, - STATE(2367), 1, - sym__patterns, - STATE(2411), 1, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2760), 1, + sym__patterns, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33178,7 +33350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33193,76 +33365,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2614] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [2618] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(938), 1, - anon_sym_COMMA, - ACTIONS(940), 1, - anon_sym_RBRACE, - STATE(995), 1, + ACTIONS(926), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(998), 1, + STATE(1011), 1, sym_string, - STATE(1239), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1616), 1, + STATE(1715), 1, sym_expression, - STATE(1787), 1, - sym_pair, - STATE(2193), 1, - sym_dictionary_splat, - STATE(2348), 1, - sym__collection_elements, - STATE(2349), 1, + STATE(2258), 1, + sym_pattern, + STATE(2659), 1, + sym__patterns, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2817), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1416), 2, + sym_attribute, + sym_subscript, + STATE(2616), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(758), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33270,11 +33444,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33287,78 +33459,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2738] = 30, - ACTIONS(796), 1, + [2742] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(942), 1, + ACTIONS(928), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1294), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1703), 1, sym_expression, - STATE(2039), 1, + STATE(2258), 1, sym_pattern, - STATE(2389), 1, + STATE(2679), 1, sym__patterns, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, - STATE(2493), 1, + STATE(2790), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33366,7 +33538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33381,78 +33553,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2862] = 30, - ACTIONS(796), 1, + [2866] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(858), 1, - anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(944), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(930), 1, + anon_sym_COMMA, + ACTIONS(932), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1294), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1684), 1, sym_expression, - STATE(2039), 1, - sym_pattern, - STATE(2367), 1, - sym__patterns, - STATE(2411), 1, + STATE(1854), 1, + sym_pair, + STATE(2464), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, - STATE(2493), 1, + STATE(2717), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1296), 2, - sym_attribute, - sym_subscript, - STATE(2299), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2412), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33460,9 +33630,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33475,14 +33647,14 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2986] = 31, - ACTIONS(730), 1, + [2990] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(870), 1, - sym_identifier, ACTIONS(872), 1, + sym_identifier, + ACTIONS(874), 1, anon_sym_LPAREN, ACTIONS(876), 1, anon_sym_STAR, @@ -33490,54 +33662,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(884), 1, - anon_sym_not, ACTIONS(886), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(888), 1, - anon_sym_yield, + anon_sym_lambda, ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(946), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(934), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1011), 1, + sym_string, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1703), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, + STATE(2258), 1, sym_pattern, - STATE(2407), 1, + STATE(2688), 1, + sym__named_expression_lhs, + STATE(2694), 1, sym__patterns, - STATE(2514), 1, + STATE(2790), 1, sym__collection_elements, - STATE(2534), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2264), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, @@ -33547,7 +33718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33555,7 +33726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33570,76 +33741,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3112] = 30, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [3114] = 30, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(826), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(830), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(836), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(882), 1, + anon_sym_LBRACK, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(842), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(846), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(948), 1, - anon_sym_COMMA, - ACTIONS(950), 1, - anon_sym_RBRACE, - STATE(995), 1, + ACTIONS(936), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(998), 1, + STATE(1011), 1, sym_string, - STATE(1239), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1626), 1, + STATE(1706), 1, sym_expression, - STATE(1800), 1, - sym_pair, - STATE(2190), 1, - sym_dictionary_splat, - STATE(2349), 1, - sym__named_expression_lhs, - STATE(2420), 1, + STATE(2258), 1, + sym_pattern, + STATE(2655), 1, sym__collection_elements, + STATE(2659), 1, + sym__patterns, + STATE(2688), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1416), 2, + sym_attribute, + sym_subscript, + STATE(2616), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2080), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(758), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33647,11 +33820,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -33664,79 +33835,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3236] = 31, - ACTIONS(730), 1, + [3238] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(882), 1, - anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(952), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(938), 1, + anon_sym_COMMA, + ACTIONS(940), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1391), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1678), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, - sym_pattern, - STATE(2514), 1, + STATE(1892), 1, + sym_pair, + STATE(2409), 1, + sym_dictionary_splat, + STATE(2636), 1, sym__collection_elements, - STATE(2519), 1, - sym__patterns, - STATE(2534), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1349), 2, - sym_attribute, - sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2412), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33744,9 +33912,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33759,79 +33929,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3362] = 31, - ACTIONS(730), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(870), 1, + [3362] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(880), 1, - anon_sym_type, - ACTIONS(882), 1, + ACTIONS(61), 1, anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(954), 1, - anon_sym_RPAREN, - STATE(1024), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(912), 1, + anon_sym_type, + STATE(626), 1, + sym_list_splat_pattern, + STATE(968), 1, sym_string, - STATE(1026), 1, + STATE(998), 1, sym_primary_expression, - STATE(1391), 1, - sym_list_splat_pattern, - STATE(1639), 1, - sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, + STATE(1651), 1, sym_pattern, - STATE(2478), 1, - sym__patterns, - STATE(2514), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(1655), 1, + sym_pattern_list, + STATE(1848), 1, + sym_expression, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(619), 2, sym_attribute, sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(418), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(2600), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33839,7 +34006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1077), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33854,76 +34021,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3488] = 28, - ACTIONS(9), 1, + [3482] = 30, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(872), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(880), 1, + anon_sym_type, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(69), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(918), 1, - anon_sym_type, - STATE(628), 1, - sym_list_splat_pattern, - STATE(978), 1, - sym_string, - STATE(1030), 1, + ACTIONS(942), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1601), 1, - sym_pattern, - STATE(1602), 1, - sym_pattern_list, - STATE(1761), 1, + STATE(1011), 1, + sym_string, + STATE(1414), 1, + sym_list_splat_pattern, + STATE(1703), 1, sym_expression, - STATE(2517), 1, + STATE(2258), 1, + sym_pattern, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2777), 1, + sym__patterns, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(642), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + STATE(2264), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(418), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2306), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1618), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33931,7 +34100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -33946,76 +34115,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3608] = 28, - ACTIONS(9), 1, + [3606] = 31, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(816), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(826), 1, + anon_sym_type, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(65), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(69), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(71), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(79), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(918), 1, - anon_sym_type, - STATE(628), 1, - sym_list_splat_pattern, - STATE(978), 1, - sym_string, - STATE(1030), 1, + ACTIONS(944), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1601), 1, - sym_pattern, - STATE(1602), 1, - sym_pattern_list, - STATE(1761), 1, + STATE(1034), 1, + sym_string, + STATE(1301), 1, + sym_list_splat_pattern, + STATE(1701), 1, sym_expression, - STATE(2517), 1, + STATE(2260), 1, + sym_yield, + STATE(2275), 1, + sym_pattern, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2814), 1, + sym__collection_elements, + STATE(2818), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(642), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(418), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(2309), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1618), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34023,7 +34195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34038,80 +34210,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3728] = 32, - ACTIONS(730), 1, + [3732] = 31, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(816), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(818), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(826), 1, anon_sym_type, - ACTIONS(882), 1, + ACTIONS(828), 1, anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(836), 1, anon_sym_await, - ACTIONS(956), 1, + ACTIONS(946), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1391), 1, + STATE(1034), 1, + sym_string, + STATE(1301), 1, sym_list_splat_pattern, - STATE(1645), 1, + STATE(1705), 1, sym_expression, - STATE(2056), 1, + STATE(2275), 1, sym_pattern, - STATE(2116), 1, + STATE(2515), 1, sym_yield, - STATE(2142), 1, - sym_list_splat, - STATE(2225), 1, - sym_parenthesized_list_splat, - STATE(2404), 1, + STATE(2691), 1, sym__collection_elements, - STATE(2519), 1, - sym__patterns, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2760), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1349), 2, + STATE(1299), 2, sym_attribute, sym_subscript, - STATE(2258), 2, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(824), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34119,7 +34290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1303), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34134,79 +34305,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3856] = 31, - ACTIONS(730), 1, + [3858] = 30, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(870), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(872), 1, + ACTIONS(842), 1, anon_sym_LPAREN, - ACTIONS(876), 1, + ACTIONS(846), 1, anon_sym_STAR, - ACTIONS(880), 1, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(882), 1, - anon_sym_LBRACK, - ACTIONS(884), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(890), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(958), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(948), 1, + anon_sym_COMMA, + ACTIONS(950), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1391), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1692), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2056), 1, - sym_pattern, - STATE(2406), 1, - sym__patterns, - STATE(2514), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(1894), 1, + sym_pair, + STATE(2513), 1, + sym_dictionary_splat, + STATE(2669), 1, sym__named_expression_lhs, + STATE(2805), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1349), 2, - sym_attribute, - sym_subscript, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2412), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(878), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34214,9 +34382,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 14, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -34230,77 +34400,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [3982] = 30, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(848), 1, + ACTIONS(872), 1, sym_identifier, - ACTIONS(850), 1, + ACTIONS(874), 1, anon_sym_LPAREN, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(856), 1, + ACTIONS(880), 1, anon_sym_type, - ACTIONS(858), 1, + ACTIONS(882), 1, anon_sym_LBRACK, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(868), 1, + ACTIONS(892), 1, anon_sym_await, - ACTIONS(960), 1, + ACTIONS(952), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1294), 1, + STATE(1414), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1706), 1, sym_expression, - STATE(2039), 1, + STATE(2258), 1, sym_pattern, - STATE(2411), 1, - sym__named_expression_lhs, - STATE(2493), 1, + STATE(2655), 1, sym__collection_elements, - STATE(2499), 1, + STATE(2659), 1, sym__patterns, + STATE(2688), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1296), 2, + STATE(1416), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(854), 4, + ACTIONS(878), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34308,7 +34478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 14, + STATE(1279), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34324,45 +34494,45 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(310), 1, - anon_sym_TILDE, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(312), 1, + anon_sym_TILDE, ACTIONS(324), 1, sym_string_start, - ACTIONS(962), 1, + ACTIONS(954), 1, sym_identifier, - ACTIONS(966), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(968), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(972), 1, + ACTIONS(964), 1, anon_sym_type, - ACTIONS(974), 1, + ACTIONS(966), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(968), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1443), 1, + STATE(1422), 1, sym_list_splat_pattern, - STATE(1553), 1, - sym_pattern, - STATE(1556), 1, + STATE(1618), 1, sym_primary_expression, + STATE(1638), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(416), 2, - anon_sym_PLUS, + ACTIONS(414), 2, anon_sym_DASH, - STATE(1444), 2, + anon_sym_PLUS, + STATE(1419), 2, sym_attribute, sym_subscript, - STATE(1560), 2, + STATE(1615), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(320), 4, @@ -34370,12 +34540,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(970), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34390,7 +34560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(964), 17, + ACTIONS(956), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -34409,45 +34579,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(310), 1, - anon_sym_TILDE, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(312), 1, + anon_sym_TILDE, ACTIONS(324), 1, sym_string_start, - ACTIONS(962), 1, + ACTIONS(954), 1, sym_identifier, - ACTIONS(966), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(968), 1, + ACTIONS(960), 1, anon_sym_STAR, - ACTIONS(972), 1, + ACTIONS(964), 1, anon_sym_type, - ACTIONS(974), 1, + ACTIONS(966), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(968), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1443), 1, + STATE(1422), 1, sym_list_splat_pattern, - STATE(1553), 1, - sym_pattern, - STATE(1556), 1, + STATE(1618), 1, sym_primary_expression, + STATE(1638), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(416), 2, - anon_sym_PLUS, + ACTIONS(414), 2, anon_sym_DASH, - STATE(1444), 2, + anon_sym_PLUS, + STATE(1419), 2, sym_attribute, sym_subscript, - STATE(1560), 2, + STATE(1615), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(320), 4, @@ -34455,12 +34625,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(970), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34475,7 +34645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(978), 17, + ACTIONS(970), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -34494,72 +34664,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4320] = 27, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(842), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(980), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(982), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - ACTIONS(988), 1, + ACTIONS(980), 1, anon_sym_type, - ACTIONS(990), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(992), 1, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(996), 1, + ACTIONS(988), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + STATE(972), 1, sym_primary_expression, - STATE(1188), 1, + STATE(977), 1, + sym_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1729), 1, sym_expression, - STATE(2281), 1, + STATE(2583), 1, sym_pattern, - STATE(2501), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1186), 2, + STATE(1248), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(986), 4, + ACTIONS(978), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1936), 4, + STATE(2095), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1727), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34567,7 +34737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 14, + STATE(1258), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34583,72 +34753,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4436] = 27, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(842), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(980), 1, + ACTIONS(972), 1, sym_identifier, - ACTIONS(982), 1, + ACTIONS(974), 1, anon_sym_LPAREN, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - ACTIONS(988), 1, + ACTIONS(980), 1, anon_sym_type, - ACTIONS(990), 1, + ACTIONS(982), 1, anon_sym_LBRACK, - ACTIONS(992), 1, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(996), 1, + ACTIONS(988), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + STATE(972), 1, sym_primary_expression, - STATE(1188), 1, + STATE(977), 1, + sym_string, + STATE(1242), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1729), 1, sym_expression, - STATE(2281), 1, + STATE(2583), 1, sym_pattern, - STATE(2501), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1186), 2, + STATE(1248), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(986), 4, + ACTIONS(978), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1967), 4, + STATE(2045), 4, sym_expression_list, sym_pattern_list, sym_yield, sym__f_expression, - STATE(1727), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34656,7 +34826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 14, + STATE(1258), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -34671,68 +34841,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4552] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, + [4552] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(998), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1000), 1, + ACTIONS(992), 1, + anon_sym_LPAREN, + ACTIONS(994), 1, + anon_sym_RPAREN, + ACTIONS(996), 1, + anon_sym_COMMA, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1707), 1, sym_expression, - STATE(1980), 1, - sym_type, - STATE(2350), 1, + STATE(2437), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + STATE(2438), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34740,7 +34912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34757,68 +34929,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4663] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [4667] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(339), 1, - anon_sym_STAR_STAR, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1008), 1, + sym_identifier, + ACTIONS(1010), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1012), 1, + anon_sym_STAR_STAR, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1754), 1, sym_expression, - STATE(2172), 1, + STATE(2075), 1, sym_type, - STATE(2520), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1948), 5, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1984), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34826,7 +34998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34843,68 +35015,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4774] = 25, - ACTIONS(738), 1, + [4778] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1016), 1, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1018), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1022), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - ACTIONS(1024), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1028), 1, anon_sym_await, - STATE(1004), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1787), 1, sym_expression, - STATE(1825), 1, + STATE(2048), 1, sym_type, - STATE(2481), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1874), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1680), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34912,7 +35084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34929,154 +35101,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [4885] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(339), 1, - anon_sym_STAR_STAR, - ACTIONS(408), 1, + [4889] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1014), 1, - anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1722), 1, - sym_expression, - STATE(2148), 1, - sym_type, - STATE(2520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1948), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1677), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [4996] = 25, ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(998), 1, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1000), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1787), 1, sym_expression, - STATE(1862), 1, + STATE(2046), 1, sym_type, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35084,7 +35170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35101,68 +35187,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5107] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, + [5000] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(998), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1000), 1, + ACTIONS(992), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1030), 1, + anon_sym_RPAREN, + ACTIONS(1032), 1, + anon_sym_COMMA, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1693), 1, sym_expression, - STATE(1854), 1, - sym_type, - STATE(2350), 1, + STATE(2498), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + STATE(2499), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35170,7 +35258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35187,156 +35275,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5218] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(998), 1, + [5115] = 25, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1000), 1, - anon_sym_STAR, - ACTIONS(1004), 1, - anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(1057), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(339), 1, + anon_sym_STAR_STAR, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1034), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1780), 1, sym_expression, - STATE(1952), 1, + STATE(2314), 1, sym_type, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1725), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1452), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [5329] = 27, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_identifier, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1036), 1, - anon_sym_RPAREN, - ACTIONS(1038), 1, - anon_sym_COMMA, - ACTIONS(1040), 1, - anon_sym_STAR, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1046), 1, - anon_sym_type, - ACTIONS(1048), 1, - anon_sym_await, - STATE(1024), 1, - sym_string, - STATE(1026), 1, - sym_primary_expression, - STATE(1420), 1, - sym_list_splat_pattern, - STATE(1633), 1, - sym_expression, - STATE(2073), 1, - sym_parenthesized_list_splat, - STATE(2534), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(728), 2, - sym_ellipsis, - sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(2072), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(712), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1042), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1734), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35344,7 +35344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35361,15 +35361,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5444] = 25, + [5226] = 25, ACTIONS(275), 1, sym_identifier, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -35380,31 +35380,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1034), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1780), 1, sym_expression, - STATE(2136), 1, + STATE(2315), 1, sym_type, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -35416,13 +35416,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35430,7 +35430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35447,68 +35447,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5555] = 25, + [5337] = 27, ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1016), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1018), 1, + ACTIONS(992), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1022), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1024), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1004), 1, + ACTIONS(1036), 1, + anon_sym_RPAREN, + ACTIONS(1038), 1, + anon_sym_COMMA, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1716), 1, sym_expression, - STATE(1921), 1, - sym_type, - STATE(2481), 1, + STATE(2457), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + STATE(2459), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1874), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35516,7 +35518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35533,46 +35535,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5666] = 22, - ACTIONS(310), 1, - anon_sym_TILDE, - ACTIONS(318), 1, + [5452] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(312), 1, + anon_sym_TILDE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1050), 1, + ACTIONS(1040), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(1044), 1, anon_sym_STAR, - ACTIONS(1058), 1, + ACTIONS(1048), 1, anon_sym_type, - ACTIONS(1060), 1, + ACTIONS(1050), 1, anon_sym_LBRACK, - ACTIONS(1062), 1, + ACTIONS(1052), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1509), 1, + STATE(1504), 1, sym_list_splat_pattern, - STATE(1572), 1, + STATE(1634), 1, sym_primary_expression, - STATE(1599), 1, + STATE(1659), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(416), 2, - anon_sym_PLUS, + ACTIONS(414), 2, anon_sym_DASH, - STATE(1508), 2, + anon_sym_PLUS, + STATE(1505), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(320), 4, @@ -35580,12 +35582,12 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(1056), 4, + ACTIONS(1046), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -35600,7 +35602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(964), 15, + ACTIONS(956), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -35616,68 +35618,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [5771] = 25, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(393), 1, + [5557] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(339), 1, + anon_sym_STAR_STAR, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1064), 1, - sym_identifier, - ACTIONS(1066), 1, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1034), 1, anon_sym_STAR, - ACTIONS(1068), 1, - anon_sym_STAR_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(1118), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1780), 1, sym_expression, - STATE(1840), 1, + STATE(2316), 1, sym_type, - STATE(2517), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1877), 5, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1618), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35685,7 +35687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35702,61 +35704,82 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5882] = 22, - ACTIONS(310), 1, - anon_sym_TILDE, - ACTIONS(318), 1, + [5668] = 27, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1050), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1052), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1058), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1060), 1, - anon_sym_LBRACK, - ACTIONS(1062), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1054), 1, + anon_sym_RPAREN, + ACTIONS(1056), 1, + anon_sym_COMMA, + STATE(1031), 1, + sym_primary_expression, + STATE(1034), 1, sym_string, - STATE(1509), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1572), 1, - sym_primary_expression, - STATE(1599), 1, - sym_pattern, + STATE(1708), 1, + sym_expression, + STATE(2289), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(416), 2, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, - STATE(1508), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(320), 4, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(2256), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1056), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1826), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -35769,84 +35792,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(978), 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, - [5987] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(998), 1, + [5783] = 25, + ACTIONS(275), 1, sym_identifier, - ACTIONS(1000), 1, - anon_sym_STAR, - ACTIONS(1004), 1, - anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(1057), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(339), 1, + anon_sym_STAR_STAR, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1034), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1780), 1, sym_expression, - STATE(1953), 1, + STATE(2320), 1, sym_type, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1725), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35854,7 +35861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35871,70 +35878,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6098] = 27, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [5894] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(339), 1, + anon_sym_STAR_STAR, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1032), 1, - sym_identifier, ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1040), 1, anon_sym_STAR, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1046), 1, - anon_sym_type, - ACTIONS(1048), 1, - anon_sym_await, - ACTIONS(1070), 1, - anon_sym_RPAREN, - ACTIONS(1072), 1, - anon_sym_COMMA, - STATE(1024), 1, + STATE(1007), 1, sym_string, - STATE(1026), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1642), 1, + STATE(1780), 1, sym_expression, - STATE(2197), 1, - sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(2380), 1, + sym_type, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2198), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(712), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1042), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2093), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35942,7 +35947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35959,156 +35964,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6213] = 27, - ACTIONS(724), 1, + [6005] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1048), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1074), 1, - anon_sym_RPAREN, - ACTIONS(1076), 1, - anon_sym_COMMA, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1650), 1, + STATE(1787), 1, sym_expression, - STATE(2208), 1, - sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(1956), 1, + sym_type, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2207), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1734), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1298), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [6328] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(339), 1, - anon_sym_STAR_STAR, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1014), 1, - anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1722), 1, - sym_expression, - STATE(2226), 1, - sym_type, - STATE(2520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(290), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1948), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36116,7 +36033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36133,70 +36050,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6439] = 27, - ACTIONS(724), 1, + [6116] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1034), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1048), 1, + ACTIONS(1006), 1, anon_sym_await, - ACTIONS(1078), 1, + ACTIONS(1058), 1, anon_sym_RPAREN, - ACTIONS(1080), 1, + ACTIONS(1060), 1, anon_sym_COMMA, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1651), 1, + STATE(1714), 1, sym_expression, - STATE(2146), 1, + STATE(2318), 1, sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2145), 3, + STATE(2326), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36204,7 +36121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36221,70 +36138,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6554] = 27, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [6231] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1032), 1, - sym_identifier, - ACTIONS(1034), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1008), 1, + sym_identifier, + ACTIONS(1010), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1012), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, - anon_sym_type, - ACTIONS(1048), 1, - anon_sym_await, - ACTIONS(1082), 1, - anon_sym_RPAREN, - ACTIONS(1084), 1, - anon_sym_COMMA, - STATE(1024), 1, + STATE(968), 1, sym_string, - STATE(1026), 1, + STATE(969), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1632), 1, + STATE(1754), 1, sym_expression, - STATE(2100), 1, - sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(1923), 1, + sym_type, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2099), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1984), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36292,7 +36207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36309,68 +36224,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6669] = 25, + [6342] = 27, ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1016), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1018), 1, + ACTIONS(992), 1, + anon_sym_LPAREN, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1022), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1024), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1004), 1, + ACTIONS(1062), 1, + anon_sym_RPAREN, + ACTIONS(1064), 1, + anon_sym_COMMA, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1696), 1, sym_expression, - STATE(1848), 1, - sym_type, - STATE(2481), 1, + STATE(2392), 1, + sym_parenthesized_list_splat, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + STATE(2391), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1874), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36378,7 +36295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36395,68 +36312,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6780] = 25, - ACTIONS(804), 1, + [6457] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(998), 1, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1000), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1787), 1, sym_expression, - STATE(1904), 1, + STATE(1917), 1, sym_type, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36464,7 +36381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36481,71 +36398,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6891] = 28, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [6568] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1088), 1, - anon_sym_RPAREN, - ACTIONS(1092), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(404), 1, anon_sym_await, - STATE(1024), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1008), 1, + sym_identifier, + ACTIONS(1010), 1, + anon_sym_STAR, + ACTIONS(1012), 1, + anon_sym_STAR_STAR, + STATE(968), 1, sym_string, - STATE(1026), 1, + STATE(969), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1754), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2170), 1, - sym_with_item, - STATE(2514), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(1924), 1, + sym_type, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1984), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36553,7 +36467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36570,50 +36484,50 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7008] = 25, - ACTIONS(65), 1, - anon_sym_not, + [6679] = 25, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(393), 1, anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1064), 1, + ACTIONS(1008), 1, sym_identifier, - ACTIONS(1066), 1, + ACTIONS(1010), 1, anon_sym_STAR, - ACTIONS(1068), 1, + ACTIONS(1012), 1, anon_sym_STAR_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1754), 1, sym_expression, - STATE(1847), 1, + STATE(1979), 1, sym_type, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -36625,13 +36539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1877), 5, + STATE(1984), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36639,7 +36553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36656,52 +36570,135 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7119] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [6790] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, + ACTIONS(312), 1, + anon_sym_TILDE, ACTIONS(324), 1, sym_string_start, - ACTIONS(339), 1, - anon_sym_STAR_STAR, - ACTIONS(408), 1, + ACTIONS(1040), 1, + sym_identifier, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1044), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1048), 1, + anon_sym_type, + ACTIONS(1050), 1, + anon_sym_LBRACK, + ACTIONS(1052), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1324), 1, + STATE(1504), 1, sym_list_splat_pattern, - STATE(1722), 1, - sym_expression, - STATE(2067), 1, - sym_type, - STATE(2520), 1, - sym__named_expression_lhs, + STATE(1634), 1, + sym_primary_expression, + STATE(1659), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(414), 2, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(290), 4, + anon_sym_PLUS, + STATE(1505), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1046), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + ACTIONS(970), 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, + [6895] = 25, + ACTIONS(275), 1, + sym_identifier, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(339), 1, + anon_sym_STAR_STAR, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1034), 1, + anon_sym_STAR, + STATE(1007), 1, + sym_string, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(1780), 1, + sym_expression, + STATE(2512), 1, + sym_type, + STATE(2677), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -36711,13 +36708,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36725,7 +36722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36742,70 +36739,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7230] = 27, - ACTIONS(724), 1, + [7006] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1034), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1002), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1048), 1, + ACTIONS(1006), 1, anon_sym_await, - ACTIONS(1096), 1, + ACTIONS(1066), 1, anon_sym_RPAREN, - ACTIONS(1098), 1, + ACTIONS(1068), 1, anon_sym_COMMA, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1635), 1, + STATE(1713), 1, sym_expression, - STATE(2246), 1, + STATE(2390), 1, sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2249), 3, + STATE(2393), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36813,7 +36810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36830,68 +36827,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7345] = 25, - ACTIONS(738), 1, + [7121] = 25, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1016), 1, + ACTIONS(1070), 1, sym_identifier, - ACTIONS(1018), 1, + ACTIONS(1072), 1, anon_sym_STAR, - ACTIONS(1022), 1, + ACTIONS(1076), 1, anon_sym_STAR_STAR, - ACTIONS(1024), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1084), 1, anon_sym_await, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1726), 1, sym_expression, - STATE(1827), 1, + STATE(1990), 1, sym_type, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1874), 5, + STATE(2006), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36899,7 +36896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36916,65 +36913,237 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7456] = 27, - ACTIONS(724), 1, + [7232] = 25, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(1070), 1, + sym_identifier, + ACTIONS(1072), 1, + anon_sym_STAR, + ACTIONS(1076), 1, + anon_sym_STAR_STAR, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1032), 1, - sym_identifier, - ACTIONS(1034), 1, + ACTIONS(1084), 1, + anon_sym_await, + STATE(1006), 1, + sym_primary_expression, + STATE(1009), 1, + sym_string, + STATE(1427), 1, + sym_list_splat_pattern, + STATE(1726), 1, + sym_expression, + STATE(1989), 1, + sym_type, + STATE(2734), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(766), 2, + sym_ellipsis, + sym_float, + ACTIONS(762), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(750), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(2006), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1304), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7343] = 25, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1070), 1, + sym_identifier, + ACTIONS(1072), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1076), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1048), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1100), 1, + STATE(1006), 1, + sym_primary_expression, + STATE(1009), 1, + sym_string, + STATE(1427), 1, + sym_list_splat_pattern, + STATE(1726), 1, + sym_expression, + STATE(1927), 1, + sym_type, + STATE(2734), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(766), 2, + sym_ellipsis, + sym_float, + ACTIONS(762), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(750), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(2006), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1304), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7454] = 27, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1054), 1, anon_sym_RPAREN, - ACTIONS(1102), 1, + ACTIONS(1056), 1, anon_sym_COMMA, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, + anon_sym_await, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1631), 1, + STATE(1901), 1, sym_expression, - STATE(2151), 1, + STATE(2289), 1, sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2157), 3, + STATE(2256), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -36987,7 +37156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37004,15 +37173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7571] = 25, + [7569] = 25, ACTIONS(275), 1, sym_identifier, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -37023,31 +37192,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1034), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1780), 1, sym_expression, - STATE(2070), 1, + STATE(2423), 1, sym_type, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -37059,13 +37228,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37073,7 +37242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37090,15 +37259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7682] = 25, + [7680] = 25, ACTIONS(275), 1, sym_identifier, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -37109,31 +37278,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1034), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1780), 1, sym_expression, - STATE(2068), 1, + STATE(2078), 1, sym_type, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -37145,13 +37314,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37159,7 +37328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37176,15 +37345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7793] = 25, + [7791] = 25, ACTIONS(275), 1, sym_identifier, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -37195,31 +37364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1034), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1780), 1, sym_expression, - STATE(2079), 1, + STATE(2074), 1, sym_type, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -37231,13 +37400,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37245,7 +37414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37262,69 +37431,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7904] = 27, - ACTIONS(724), 1, + [7902] = 25, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1032), 1, + ACTIONS(1070), 1, sym_identifier, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1040), 1, + ACTIONS(1072), 1, anon_sym_STAR, - ACTIONS(1044), 1, + ACTIONS(1076), 1, anon_sym_STAR_STAR, - ACTIONS(1046), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1048), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1104), 1, - anon_sym_RPAREN, - ACTIONS(1106), 1, - anon_sym_COMMA, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1643), 1, + STATE(1726), 1, sym_expression, - STATE(2042), 1, - sym_parenthesized_list_splat, - STATE(2534), 1, + STATE(2081), 1, + sym_type, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2043), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(712), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1042), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, + STATE(2006), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, STATE(1734), 7, sym_named_expression, sym_as_pattern, @@ -37333,7 +37500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37350,68 +37517,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8019] = 25, - ACTIONS(804), 1, + [8013] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(998), 1, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1000), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1004), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1787), 1, sym_expression, - STATE(1895), 1, + STATE(2055), 1, sym_type, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1918), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37419,7 +37586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37436,68 +37603,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8130] = 25, - ACTIONS(275), 1, - sym_identifier, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(339), 1, - anon_sym_STAR_STAR, - ACTIONS(408), 1, + [8124] = 25, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(696), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + sym_identifier, + ACTIONS(1100), 1, + anon_sym_from, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1324), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1724), 1, sym_expression, - STATE(1970), 1, - sym_type, - STATE(2520), 1, + STATE(2066), 1, + sym_expression_list, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1948), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1677), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(1102), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37505,7 +37672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37522,68 +37689,154 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8241] = 25, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [8235] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1014), 1, + sym_identifier, + ACTIONS(1016), 1, + anon_sym_STAR, + ACTIONS(1020), 1, + anon_sym_STAR_STAR, + ACTIONS(1022), 1, + anon_sym_type, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, + STATE(1083), 1, + sym_primary_expression, + STATE(1152), 1, + sym_string, + STATE(1484), 1, + sym_list_splat_pattern, + STATE(1787), 1, + sym_expression, + STATE(1940), 1, + sym_type, + STATE(2626), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(810), 2, + sym_ellipsis, + sym_float, + ACTIONS(806), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(794), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(2069), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1477), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [8346] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(1064), 1, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1014), 1, sym_identifier, - ACTIONS(1066), 1, + ACTIONS(1016), 1, anon_sym_STAR, - ACTIONS(1068), 1, + ACTIONS(1020), 1, anon_sym_STAR_STAR, - STATE(976), 1, + ACTIONS(1022), 1, + anon_sym_type, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_await, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1787), 1, sym_expression, - STATE(1969), 1, + STATE(1921), 1, sym_type, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1877), 5, + STATE(2069), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37591,7 +37844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37608,15 +37861,15 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8352] = 25, + [8457] = 25, ACTIONS(275), 1, sym_identifier, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -37627,31 +37880,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1014), 1, + ACTIONS(1034), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1722), 1, + STATE(1780), 1, sym_expression, - STATE(1963), 1, + STATE(2455), 1, sym_type, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -37663,13 +37916,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1948), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37677,7 +37930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37694,70 +37947,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8463] = 27, - ACTIONS(746), 1, + [8568] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1036), 1, - anon_sym_RPAREN, - ACTIONS(1038), 1, - anon_sym_COMMA, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(990), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(998), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1004), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1006), 1, anon_sym_await, - STATE(1004), 1, + ACTIONS(1110), 1, + anon_sym_RPAREN, + ACTIONS(1112), 1, + anon_sym_COMMA, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1699), 1, sym_expression, - STATE(2073), 1, + STATE(2484), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2072), 3, + STATE(2483), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1000), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37765,7 +38018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37782,68 +38035,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8578] = 25, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [8683] = 28, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1064), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1066), 1, - anon_sym_STAR, - ACTIONS(1068), 1, - anon_sym_STAR_STAR, - STATE(976), 1, + ACTIONS(1116), 1, + anon_sym_RPAREN, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + STATE(1031), 1, sym_primary_expression, - STATE(978), 1, + STATE(1034), 1, sym_string, - STATE(1118), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1697), 1, sym_expression, - STATE(1821), 1, - sym_type, - STATE(2517), 1, + STATE(2260), 1, + sym_yield, + STATE(2491), 1, + sym_with_item, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1877), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1618), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37851,7 +38107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37868,68 +38124,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8689] = 25, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, + [8800] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1122), 1, - anon_sym_from, - ACTIONS(1128), 1, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1096), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1124), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1667), 1, + STATE(1943), 1, sym_expression, - STATE(1974), 1, - sym_expression_list, - STATE(2501), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(1124), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1727), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37937,7 +38193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37954,68 +38210,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8800] = 26, - ACTIONS(746), 1, + [8912] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1132), 1, + ACTIONS(1126), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38023,7 +38279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38040,68 +38296,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8912] = 26, - ACTIONS(746), 1, + [9024] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(876), 1, + anon_sym_STAR, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1136), 1, + anon_sym_RBRACK, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1134), 1, - anon_sym_RPAREN, - STATE(1004), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1011), 1, sym_string, - STATE(1300), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1704), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2630), 1, + sym__collection_elements, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2264), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38109,7 +38365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38126,69 +38382,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9024] = 27, - ACTIONS(724), 1, + [9136] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1034), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1086), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1136), 1, + ACTIONS(1140), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1644), 1, + STATE(1718), 1, sym_expression, - STATE(2062), 1, + STATE(2421), 1, sym_yield, - STATE(2465), 1, + STATE(2486), 1, + sym_parenthesized_list_splat, + STATE(2488), 1, + sym_list_splat, + STATE(2628), 1, sym__collection_elements, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38196,7 +38453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38213,68 +38470,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9138] = 26, - ACTIONS(746), 1, + [9252] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(876), 1, + anon_sym_STAR, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1118), 1, - anon_sym_await, ACTIONS(1138), 1, - anon_sym_RPAREN, - STATE(1004), 1, + anon_sym_await, + ACTIONS(1142), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1011), 1, sym_string, - STATE(1300), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1702), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2778), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2264), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38282,7 +38539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38299,68 +38556,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9250] = 26, - ACTIONS(746), 1, + [9364] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1140), 1, + ACTIONS(1144), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38368,7 +38625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38385,68 +38642,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9362] = 26, - ACTIONS(746), 1, + [9476] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1142), 1, + ACTIONS(1140), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1718), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2421), 1, + sym_yield, + STATE(2628), 1, + sym__collection_elements, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38454,7 +38712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38471,68 +38729,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9474] = 26, - ACTIONS(746), 1, + [9590] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1144), 1, + ACTIONS(1146), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38540,7 +38798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38557,68 +38815,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9586] = 26, - ACTIONS(746), 1, + [9702] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1146), 1, + ACTIONS(1148), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38626,7 +38884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38643,68 +38901,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9698] = 26, - ACTIONS(746), 1, + [9814] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1148), 1, + ACTIONS(1150), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1705), 1, sym_expression, - STATE(2267), 1, + STATE(2276), 1, + sym_list_splat, + STATE(2277), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2515), 1, + sym_yield, + STATE(2691), 1, + sym__collection_elements, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38712,7 +38972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38729,68 +38989,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9810] = 26, - ACTIONS(746), 1, + [9930] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1150), 1, + ACTIONS(1152), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38798,7 +39058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38815,68 +39075,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9922] = 26, - ACTIONS(746), 1, + [10042] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1152), 1, + ACTIONS(1154), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38884,7 +39144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38901,68 +39161,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10034] = 26, - ACTIONS(746), 1, + [10154] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1154), 1, + ACTIONS(1156), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38970,7 +39230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38987,64 +39247,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10146] = 27, - ACTIONS(724), 1, + [10266] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1156), 1, + ACTIONS(1158), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1630), 1, + STATE(1943), 1, sym_expression, - STATE(2239), 1, - sym_yield, - STATE(2504), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -39057,7 +39316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39074,65 +39333,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10260] = 28, - ACTIONS(724), 1, + [10378] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1158), 1, + ACTIONS(1160), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1636), 1, + STATE(1943), 1, sym_expression, - STATE(2215), 1, - sym_yield, - STATE(2237), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2241), 1, - sym_list_splat, - STATE(2475), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -39145,7 +39402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39162,68 +39419,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10376] = 26, - ACTIONS(790), 1, + [10490] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(852), 1, - anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1160), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1168), 1, - anon_sym_RBRACK, - ACTIONS(1170), 1, + ACTIONS(1096), 1, anon_sym_await, - STATE(1045), 1, + ACTIONS(1162), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1641), 1, + STATE(1943), 1, sym_expression, - STATE(2411), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, - STATE(2474), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2543), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39231,7 +39488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39248,64 +39505,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10488] = 27, - ACTIONS(724), 1, + [10602] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1172), 1, + ACTIONS(1164), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1637), 1, + STATE(1943), 1, sym_expression, - STATE(2074), 1, - sym_yield, - STATE(2375), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -39318,7 +39574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39335,64 +39591,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10602] = 27, - ACTIONS(724), 1, + [10714] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1174), 1, + ACTIONS(1166), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1648), 1, + STATE(1943), 1, sym_expression, - STATE(2181), 1, - sym_yield, - STATE(2409), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -39405,7 +39660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39422,68 +39677,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10716] = 26, - ACTIONS(746), 1, + [10826] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1176), 1, + ACTIONS(1168), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39491,7 +39746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39508,68 +39763,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10828] = 26, - ACTIONS(746), 1, + [10938] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1178), 1, + ACTIONS(1170), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39577,7 +39832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39594,68 +39849,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10940] = 26, - ACTIONS(790), 1, + [11050] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(852), 1, - anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1160), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1180), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1172), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1646), 1, + STATE(1943), 1, sym_expression, - STATE(2411), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, - STATE(2505), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2543), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39663,7 +39918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39680,68 +39935,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11052] = 26, - ACTIONS(746), 1, + [11162] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1182), 1, + ACTIONS(1174), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39749,7 +40004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39766,68 +40021,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11164] = 26, - ACTIONS(746), 1, + [11274] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1184), 1, + ACTIONS(1176), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39835,7 +40090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39852,64 +40107,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11276] = 27, - ACTIONS(724), 1, + [11386] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1186), 1, + ACTIONS(1178), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1645), 1, + STATE(1943), 1, sym_expression, - STATE(2116), 1, - sym_yield, - STATE(2404), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -39922,7 +40176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39939,68 +40193,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11390] = 26, - ACTIONS(790), 1, + [11498] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1162), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1188), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1180), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1400), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1655), 1, + STATE(1698), 1, sym_expression, - STATE(2346), 1, + STATE(2276), 1, + sym_list_splat, + STATE(2277), 1, + sym_parenthesized_list_splat, + STATE(2456), 1, + sym_yield, + STATE(2692), 1, sym__collection_elements, - STATE(2411), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40008,7 +40264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40025,65 +40281,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11502] = 28, - ACTIONS(724), 1, + [11614] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1156), 1, + ACTIONS(1182), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1630), 1, + STATE(1943), 1, sym_expression, - STATE(2060), 1, - sym_list_splat, - STATE(2061), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2239), 1, - sym_yield, - STATE(2504), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -40096,7 +40350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40113,68 +40367,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11618] = 26, - ACTIONS(790), 1, + [11726] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(852), 1, - anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1160), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1090), 1, + anon_sym_STAR, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1190), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1184), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1649), 1, + STATE(1943), 1, sym_expression, - STATE(2361), 1, - sym__collection_elements, - STATE(2411), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2543), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40182,7 +40436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40199,68 +40453,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11730] = 26, - ACTIONS(746), 1, + [11838] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(876), 1, + anon_sym_STAR, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1192), 1, - anon_sym_RPAREN, - STATE(1004), 1, + ACTIONS(1186), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1011), 1, sym_string, - STATE(1300), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1703), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2790), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2264), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40268,7 +40522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40285,68 +40539,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11842] = 26, - ACTIONS(746), 1, + [11950] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(876), 1, + anon_sym_STAR, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1194), 1, - anon_sym_RPAREN, - STATE(1004), 1, + ACTIONS(1188), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1011), 1, sym_string, - STATE(1300), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1715), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2817), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2264), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40354,7 +40608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40371,68 +40625,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11954] = 26, - ACTIONS(746), 1, + [12062] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1196), 1, + ACTIONS(1180), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1698), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2456), 1, + sym_yield, + STATE(2692), 1, + sym__collection_elements, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40440,7 +40695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40457,68 +40712,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12066] = 26, - ACTIONS(746), 1, + [12176] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, + ACTIONS(1114), 1, + sym_identifier, ACTIONS(1116), 1, + anon_sym_RPAREN, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1198), 1, - anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1701), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2260), 1, + sym_yield, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2814), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40526,7 +40782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40543,68 +40799,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12178] = 26, - ACTIONS(746), 1, + [12290] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1200), 1, + ACTIONS(1190), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40612,7 +40868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40629,64 +40885,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12290] = 27, - ACTIONS(724), 1, + [12402] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1202), 1, + ACTIONS(1192), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1943), 1, sym_expression, - STATE(2173), 1, - sym_yield, - STATE(2353), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -40699,7 +40954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40716,68 +40971,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12404] = 26, - ACTIONS(746), 1, + [12514] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1204), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1709), 1, sym_expression, - STATE(2267), 1, + STATE(2479), 1, + sym_yield, + STATE(2482), 1, + sym_list_splat, + STATE(2489), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2765), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40785,7 +41042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40802,68 +41059,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12516] = 26, - ACTIONS(790), 1, + [12630] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1206), 1, + ACTIONS(1196), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1647), 1, + STATE(1706), 1, sym_expression, - STATE(2411), 1, - sym__named_expression_lhs, - STATE(2434), 1, + STATE(2655), 1, sym__collection_elements, + STATE(2688), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40871,7 +41128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40888,68 +41145,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12628] = 26, - ACTIONS(746), 1, + [12742] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1208), 1, + ACTIONS(1198), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40957,7 +41214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40974,68 +41231,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12740] = 26, - ACTIONS(746), 1, + [12854] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1210), 1, + ACTIONS(1200), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41043,7 +41300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41060,65 +41317,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12852] = 28, - ACTIONS(724), 1, + [12966] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1174), 1, + ACTIONS(1202), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1648), 1, + STATE(1943), 1, sym_expression, - STATE(2060), 1, - sym_list_splat, - STATE(2061), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2181), 1, - sym_yield, - STATE(2409), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -41131,7 +41386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41148,69 +41403,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12968] = 27, - ACTIONS(724), 1, + [13078] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1034), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1086), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1158), 1, + ACTIONS(1204), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1636), 1, + STATE(1717), 1, sym_expression, - STATE(2215), 1, + STATE(2279), 1, sym_yield, - STATE(2475), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2753), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(2053), 2, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41218,7 +41473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41235,68 +41490,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13082] = 26, - ACTIONS(746), 1, + [13192] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1212), 1, + ACTIONS(1206), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41304,7 +41559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41321,68 +41576,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13194] = 26, - ACTIONS(746), 1, + [13304] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1214), 1, + ACTIONS(1208), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41390,7 +41645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41407,70 +41662,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13306] = 28, - ACTIONS(724), 1, + [13416] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(876), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1034), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1086), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1202), 1, + ACTIONS(1210), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1711), 1, sym_expression, - STATE(2142), 1, - sym_list_splat, - STATE(2173), 1, + STATE(2470), 1, sym_yield, - STATE(2225), 1, + STATE(2482), 1, + sym_list_splat, + STATE(2489), 1, sym_parenthesized_list_splat, - STATE(2353), 1, + STATE(2731), 1, sym__collection_elements, - STATE(2534), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41478,7 +41733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41495,68 +41750,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13422] = 26, - ACTIONS(746), 1, + [13532] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1216), 1, + ACTIONS(1210), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1711), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2470), 1, + sym_yield, + STATE(2731), 1, + sym__collection_elements, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41564,7 +41820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41581,70 +41837,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13534] = 28, - ACTIONS(724), 1, + [13646] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(884), 1, - anon_sym_not, ACTIONS(886), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1172), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1212), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1637), 1, + STATE(1710), 1, sym_expression, - STATE(2074), 1, - sym_yield, - STATE(2237), 1, - sym_parenthesized_list_splat, - STATE(2241), 1, - sym_list_splat, - STATE(2375), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, + STATE(2729), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2264), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41652,7 +41906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41669,68 +41923,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13650] = 26, - ACTIONS(746), 1, + [13758] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1218), 1, + ACTIONS(1194), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1709), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2479), 1, + sym_yield, + STATE(2743), 1, sym__named_expression_lhs, + STATE(2765), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2274), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41738,7 +41993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41755,68 +42010,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13762] = 26, - ACTIONS(790), 1, + [13872] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(852), 1, + ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1162), 1, + ACTIONS(1130), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1220), 1, + ACTIONS(1214), 1, anon_sym_RBRACK, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1638), 1, + STATE(1694), 1, sym_expression, - STATE(2356), 1, + STATE(2617), 1, sym__collection_elements, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2038), 3, + STATE(2264), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41824,7 +42079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41841,68 +42096,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13874] = 26, - ACTIONS(746), 1, + [13984] = 28, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(822), 1, + anon_sym_STAR, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1110), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1222), 1, + ACTIONS(1216), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1695), 1, sym_expression, - STATE(2267), 1, + STATE(2361), 1, + sym_yield, + STATE(2486), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2488), 1, + sym_list_splat, + STATE(2683), 1, + sym__collection_elements, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41910,7 +42167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41927,68 +42184,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13986] = 26, - ACTIONS(746), 1, + [14100] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1224), 1, + ACTIONS(1218), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41996,7 +42253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42013,68 +42270,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14098] = 26, - ACTIONS(790), 1, + [14212] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1162), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1226), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1216), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1400), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1652), 1, + STATE(1695), 1, sym_expression, - STATE(2387), 1, + STATE(2361), 1, + sym_yield, + STATE(2683), 1, sym__collection_elements, - STATE(2411), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(2038), 3, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(740), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42082,7 +42340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42099,69 +42357,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14210] = 27, - ACTIONS(724), 1, + [14326] = 26, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, ACTIONS(876), 1, anon_sym_STAR, - ACTIONS(884), 1, - anon_sym_not, ACTIONS(886), 1, - anon_sym_lambda, + anon_sym_not, ACTIONS(888), 1, + anon_sym_lambda, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1088), 1, - anon_sym_RPAREN, - ACTIONS(1092), 1, + ACTIONS(1130), 1, + anon_sym_LPAREN, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1220), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1639), 1, + STATE(1712), 1, sym_expression, - STATE(2040), 1, - sym_yield, - STATE(2514), 1, + STATE(2676), 1, sym__collection_elements, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(2053), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2264), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42169,7 +42426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42186,68 +42443,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14324] = 26, - ACTIONS(746), 1, + [14438] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1228), 1, + ACTIONS(1222), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42255,7 +42512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42272,68 +42529,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14436] = 26, - ACTIONS(790), 1, + [14550] = 27, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(852), 1, + ACTIONS(822), 1, anon_sym_STAR, - ACTIONS(862), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(866), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1162), 1, + ACTIONS(992), 1, anon_sym_LPAREN, - ACTIONS(1166), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1230), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1150), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1034), 1, sym_string, - STATE(1400), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1640), 1, + STATE(1705), 1, sym_expression, - STATE(2411), 1, - sym__named_expression_lhs, - STATE(2493), 1, + STATE(2515), 1, + sym_yield, + STATE(2691), 1, sym__collection_elements, + STATE(2743), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - STATE(2038), 3, + STATE(2274), 2, sym_list_splat, sym_parenthesized_list_splat, - sym_yield, - ACTIONS(780), 4, + ACTIONS(740), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42341,7 +42599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42358,65 +42616,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14548] = 28, - ACTIONS(724), 1, + [14664] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(876), 1, - anon_sym_STAR, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1034), 1, - anon_sym_LPAREN, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1186), 1, + ACTIONS(1224), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1645), 1, + STATE(1943), 1, sym_expression, - STATE(2116), 1, - sym_yield, - STATE(2142), 1, - sym_list_splat, - STATE(2225), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2404), 1, - sym__collection_elements, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -42429,7 +42685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42446,68 +42702,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14664] = 26, - ACTIONS(746), 1, + [14776] = 26, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1086), 1, sym_identifier, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1112), 1, + ACTIONS(1090), 1, anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1094), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1232), 1, + ACTIONS(1226), 1, anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1943), 1, sym_expression, - STATE(2267), 1, + STATE(2556), 1, sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, + STATE(2543), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, + ACTIONS(1092), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42515,7 +42771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42532,68 +42788,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14776] = 26, - ACTIONS(746), 1, + [14888] = 25, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(862), 1, anon_sym_await, + ACTIONS(1228), 1, + anon_sym_STAR, + ACTIONS(1232), 1, + anon_sym_RBRACE, ACTIONS(1234), 1, - anon_sym_RPAREN, - STATE(1004), 1, + anon_sym_lambda, + STATE(979), 1, sym_primary_expression, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1853), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2024), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(848), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1230), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1680), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42601,7 +42855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42618,68 +42872,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14888] = 19, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [14997] = 25, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(724), 1, + sym_string_start, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(862), 1, anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1135), 1, + ACTIONS(1228), 1, + anon_sym_STAR, + ACTIONS(1234), 1, + anon_sym_lambda, + ACTIONS(1238), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1324), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, + STATE(1853), 1, + sym_expression, + STATE(2669), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(2024), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(848), 3, anon_sym_print, anon_sym_match, - anon_sym_async, anon_sym_exec, - ACTIONS(314), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(320), 5, + ACTIONS(1236), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(704), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1365), 16, + STATE(1764), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42696,66 +42956,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14985] = 25, - ACTIONS(812), 1, + [15106] = 25, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1238), 1, - anon_sym_LPAREN, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1232), 1, + anon_sym_RPAREN, ACTIONS(1240), 1, anon_sym_STAR, ACTIONS(1242), 1, - anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1804), 1, sym_expression, - STATE(2350), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2112), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2317), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(802), 4, + ACTIONS(1118), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1230), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42763,7 +43023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42780,22 +43040,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15094] = 25, - ACTIONS(782), 1, + [15215] = 25, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, ACTIONS(1244), 1, anon_sym_STAR, @@ -42803,30 +43063,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, ACTIONS(1250), 1, anon_sym_lambda, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1802), 1, sym_expression, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1955), 2, + STATE(2012), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1164), 3, + ACTIONS(1132), 3, anon_sym_print, anon_sym_match, anon_sym_exec, @@ -42834,12 +43094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42847,7 +43107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42864,66 +43124,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15203] = 25, - ACTIONS(697), 1, + [15324] = 25, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(842), 1, - anon_sym_yield, - ACTIONS(992), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(994), 1, - anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1242), 1, - anon_sym_RBRACE, - ACTIONS(1252), 1, - anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1238), 1, + anon_sym_RPAREN, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1887), 1, + STATE(1804), 1, sym_expression, - STATE(2501), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + STATE(2112), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2301), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(687), 4, + ACTIONS(1118), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1236), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1727), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42931,7 +43191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42948,66 +43208,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15312] = 25, - ACTIONS(714), 1, + [15433] = 25, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1248), 1, - anon_sym_RPAREN, - ACTIONS(1256), 1, + ACTIONS(1232), 1, + anon_sym_RBRACK, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(1258), 1, + ACTIONS(1250), 1, anon_sym_lambda, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1802), 1, sym_expression, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1922), 2, + STATE(2012), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1090), 3, + ACTIONS(1132), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(1246), 3, + ACTIONS(1230), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(712), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43015,7 +43275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43032,66 +43292,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15421] = 25, - ACTIONS(782), 1, + [15542] = 23, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1244), 1, - anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - ACTIONS(1262), 1, - anon_sym_RBRACK, - STATE(1045), 1, + STATE(972), 1, sym_primary_expression, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1795), 1, sym_expression, - STATE(2411), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1955), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1164), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1260), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(780), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(1252), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43099,7 +43357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43116,66 +43374,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15530] = 25, - ACTIONS(746), 1, + [15647] = 25, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(888), 1, + ACTIONS(890), 1, anon_sym_yield, - ACTIONS(1024), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1264), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1266), 1, - anon_sym_RPAREN, - ACTIONS(1268), 1, + ACTIONS(1256), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1260), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1885), 1, + STATE(1911), 1, sym_expression, - STATE(2481), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2344), 3, + STATE(2602), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(736), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43183,7 +43441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43200,64 +43458,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15639] = 23, - ACTIONS(689), 1, + [15756] = 25, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(994), 1, - anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1122), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1240), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_lambda, + ACTIONS(1262), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1804), 1, sym_expression, - STATE(2501), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + STATE(2112), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(1118), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1264), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(1270), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1727), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43265,7 +43525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43282,66 +43542,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15744] = 25, - ACTIONS(697), 1, + [15865] = 25, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(842), 1, + ACTIONS(860), 1, anon_sym_yield, - ACTIONS(992), 1, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1252), 1, + ACTIONS(1266), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(1266), 1, + ACTIONS(1270), 1, anon_sym_RBRACE, - STATE(989), 1, - sym_string, - STATE(990), 1, + STATE(972), 1, sym_primary_expression, - STATE(1272), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1887), 1, + STATE(1964), 1, sym_expression, - STATE(2501), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2301), 3, + STATE(2549), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(687), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43349,7 +43609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43366,66 +43626,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15853] = 25, - ACTIONS(746), 1, + [15974] = 25, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1044), 1, - anon_sym_STAR_STAR, - ACTIONS(1108), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1112), 1, - anon_sym_STAR, - ACTIONS(1116), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1118), 1, + ACTIONS(1138), 1, anon_sym_await, - STATE(1004), 1, + ACTIONS(1238), 1, + anon_sym_RBRACK, + ACTIONS(1244), 1, + anon_sym_STAR, + ACTIONS(1250), 1, + anon_sym_lambda, + STATE(1010), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1011), 1, sym_string, - STATE(1300), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1835), 1, + STATE(1802), 1, sym_expression, - STATE(2267), 1, - sym_parenthesized_list_splat, - STATE(2481), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2012), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2274), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(736), 4, + ACTIONS(1132), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1236), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1114), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1680), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43433,7 +43693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43450,64 +43710,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15962] = 23, - ACTIONS(689), 1, + [16083] = 25, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, - anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(862), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1228), 1, + anon_sym_STAR, + ACTIONS(1234), 1, + anon_sym_lambda, + ACTIONS(1248), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1272), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(1853), 1, sym_expression, - STATE(2501), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + STATE(2024), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(848), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1246), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(1272), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1727), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43515,7 +43777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43532,66 +43794,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16067] = 25, - ACTIONS(812), 1, + [16192] = 25, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1238), 1, - anon_sym_LPAREN, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1266), 1, - anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + ACTIONS(1248), 1, + anon_sym_RPAREN, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(1804), 1, sym_expression, - STATE(2350), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2112), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2317), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(802), 4, + ACTIONS(1118), 3, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + ACTIONS(1246), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43599,7 +43861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43616,65 +43878,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16176] = 25, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, + [16301] = 25, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(1002), 1, + anon_sym_STAR_STAR, + ACTIONS(1080), 1, anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, ACTIONS(1086), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_STAR, ACTIONS(1094), 1, + anon_sym_type, + ACTIONS(1096), 1, anon_sym_await, - ACTIONS(1256), 1, - anon_sym_STAR, - ACTIONS(1258), 1, - anon_sym_lambda, - ACTIONS(1262), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1943), 1, sym_expression, - STATE(2534), 1, + STATE(2556), 1, + sym_parenthesized_list_splat, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(1922), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1090), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1260), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(712), 4, + STATE(2543), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, + ACTIONS(1092), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, STATE(1734), 7, sym_named_expression, sym_as_pattern, @@ -43683,7 +43945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43700,66 +43962,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16285] = 25, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, + [16410] = 25, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(860), 1, + anon_sym_yield, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1262), 1, + ACTIONS(1260), 1, anon_sym_RBRACE, - ACTIONS(1274), 1, + ACTIONS(1266), 1, + anon_sym_LPAREN, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - STATE(995), 1, + STATE(972), 1, sym_primary_expression, - STATE(998), 1, + STATE(977), 1, sym_string, - STATE(1239), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1964), 1, sym_expression, - STATE(2349), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1977), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(832), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1260), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(758), 4, + STATE(2549), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1706), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43767,7 +44029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43784,65 +44046,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16394] = 25, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, + [16519] = 25, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1094), 1, - anon_sym_await, - ACTIONS(1256), 1, - anon_sym_STAR, - ACTIONS(1258), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1278), 1, + ACTIONS(1084), 1, + anon_sym_await, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1260), 1, anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1274), 1, + anon_sym_STAR, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1933), 1, sym_expression, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(1922), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1090), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1280), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(712), 4, + STATE(2563), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, STATE(1734), 7, sym_named_expression, sym_as_pattern, @@ -43851,7 +44113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43868,66 +44130,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16503] = 25, - ACTIONS(714), 1, + [16628] = 25, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(1258), 1, + ACTIONS(1250), 1, anon_sym_lambda, - ACTIONS(1282), 1, - anon_sym_RPAREN, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1262), 1, + anon_sym_RBRACK, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1802), 1, sym_expression, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1922), 2, + STATE(2012), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1090), 3, + ACTIONS(1132), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(1284), 3, + ACTIONS(1264), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(712), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43935,7 +44197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43952,66 +44214,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16612] = 25, - ACTIONS(746), 1, + [16737] = 25, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(888), 1, + ACTIONS(834), 1, anon_sym_yield, - ACTIONS(1024), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1110), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(1242), 1, + ACTIONS(1270), 1, anon_sym_RPAREN, - ACTIONS(1264), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(1268), 1, + ACTIONS(1274), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1885), 1, + STATE(1933), 1, sym_expression, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2344), 3, + STATE(2563), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44019,7 +44281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44036,66 +44298,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16721] = 25, - ACTIONS(782), 1, + [16846] = 25, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1228), 1, anon_sym_STAR, - ACTIONS(1250), 1, + ACTIONS(1234), 1, anon_sym_lambda, - ACTIONS(1278), 1, - anon_sym_RBRACK, - STATE(1045), 1, + ACTIONS(1262), 1, + anon_sym_RBRACE, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1400), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1853), 1, sym_expression, - STATE(2411), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1955), 2, + STATE(2024), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1164), 3, + ACTIONS(848), 3, anon_sym_print, anon_sym_match, anon_sym_exec, - ACTIONS(1280), 3, + ACTIONS(1264), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(780), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1753), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44103,7 +44365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44120,150 +44382,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16830] = 25, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, + [16955] = 25, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(846), 1, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1256), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - ACTIONS(1282), 1, - anon_sym_RBRACE, - STATE(995), 1, + ACTIONS(1270), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(998), 1, + STATE(1152), 1, sym_string, - STATE(1239), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1911), 1, sym_expression, - STATE(2349), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1977), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(832), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1284), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(758), 4, + STATE(2602), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1706), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1193), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [16939] = 25, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, - anon_sym_await, - ACTIONS(1274), 1, - anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - ACTIONS(1278), 1, - anon_sym_RBRACE, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, - sym_string, - STATE(1239), 1, - sym_list_splat_pattern, - STATE(1771), 1, - sym_expression, - STATE(2349), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(772), 2, - sym_ellipsis, - sym_float, - STATE(1977), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(832), 3, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, - anon_sym_exec, - ACTIONS(1280), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1706), 7, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44271,7 +44449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44288,66 +44466,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17048] = 25, - ACTIONS(760), 1, + [17064] = 23, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1248), 1, - anon_sym_RBRACE, - ACTIONS(1274), 1, - anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - STATE(995), 1, + STATE(972), 1, sym_primary_expression, - STATE(998), 1, + STATE(977), 1, sym_string, - STATE(1239), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1795), 1, sym_expression, - STATE(2349), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1977), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(832), 3, - anon_sym_print, - anon_sym_match, - anon_sym_exec, - ACTIONS(1246), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, - ACTIONS(758), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1706), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(1276), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44355,7 +44531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44372,74 +44548,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17157] = 25, - ACTIONS(782), 1, - anon_sym_LPAREN, - ACTIONS(790), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, + [17169] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, + anon_sym_STAR, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1244), 1, - anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - ACTIONS(1282), 1, - anon_sym_RBRACK, - STATE(1045), 1, - sym_primary_expression, - STATE(1047), 1, + STATE(1007), 1, sym_string, - STATE(1400), 1, + STATE(1078), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1775), 1, - sym_expression, - STATE(2411), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1955), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1164), 3, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, - anon_sym_exec, - ACTIONS(1284), 3, - anon_sym_if, anon_sym_async, - anon_sym_for, - ACTIONS(780), 4, + anon_sym_exec, + ACTIONS(316), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1753), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1291), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44459,10 +44629,10 @@ static const uint16_t ts_small_parse_table[] = { [17266] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -44475,34 +44645,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1286), 1, + ACTIONS(1278), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -44514,7 +44684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44522,7 +44692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44539,64 +44709,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17374] = 24, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [17374] = 25, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(842), 1, - anon_sym_yield, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1252), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(1254), 1, + ACTIONS(410), 1, anon_sym_STAR, - STATE(989), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(1280), 1, + anon_sym_RBRACE, + STATE(1007), 1, sym_string, - STATE(990), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1887), 1, + STATE(2089), 1, sym_expression, - STATE(2501), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + STATE(2606), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2301), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(687), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1126), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44621,13 +44792,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17480] = 25, + [17482] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -44640,34 +44811,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1288), 1, + ACTIONS(1282), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -44679,7 +44850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44687,7 +44858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44704,13 +44875,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17588] = 25, + [17590] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -44723,34 +44894,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1290), 1, + ACTIONS(1284), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -44762,7 +44933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44770,7 +44941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44787,65 +44958,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17696] = 25, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [17698] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1294), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1286), 1, anon_sym_from, - ACTIONS(1296), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1882), 1, sym_expression, - STATE(2104), 1, + STATE(2555), 1, sym_expression_list, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1292), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(1102), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44853,7 +45024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44870,13 +45041,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17804] = 25, + [17806] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -44889,34 +45060,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1298), 1, + ACTIONS(1290), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -44928,7 +45099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44936,7 +45107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44953,13 +45124,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17912] = 25, + [17914] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -44972,34 +45143,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1300), 1, + ACTIONS(1292), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45011,7 +45182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45019,7 +45190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45036,65 +45207,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18020] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, + [18022] = 25, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1302), 1, - anon_sym_from, - ACTIONS(1304), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, anon_sym_STAR, - STATE(1057), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(1294), 1, + anon_sym_RBRACE, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1807), 1, + STATE(2089), 1, sym_expression, - STATE(2300), 1, - sym_expression_list, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1124), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2606), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45102,7 +45273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45119,64 +45290,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18128] = 24, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(866), 1, - anon_sym_yield, - ACTIONS(1006), 1, + [18130] = 25, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1238), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(1240), 1, + ACTIONS(410), 1, anon_sym_STAR, - STATE(1057), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(1296), 1, + anon_sym_RBRACE, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1839), 1, + STATE(2089), 1, sym_expression, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2606), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2317), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45184,7 +45356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45201,65 +45373,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18234] = 25, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, + [18238] = 24, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(890), 1, + anon_sym_yield, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1306), 1, - anon_sym_from, - ACTIONS(1308), 1, + ACTIONS(1256), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1911), 1, sym_expression, - STATE(2259), 1, - sym_expression_list, - STATE(2481), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1124), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + STATE(2602), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45267,7 +45438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45284,65 +45455,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18342] = 25, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [18344] = 24, + ACTIONS(692), 1, + anon_sym_LBRACK, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(860), 1, + anon_sym_yield, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + ACTIONS(1266), 1, anon_sym_LPAREN, - ACTIONS(410), 1, + ACTIONS(1268), 1, anon_sym_STAR, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 1, - anon_sym_RBRACE, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(972), 1, sym_primary_expression, - STATE(1324), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1964), 1, sym_expression, - STATE(2520), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(2339), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + STATE(2549), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45350,7 +45520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45370,10 +45540,10 @@ static const uint16_t ts_small_parse_table[] = { [18450] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45386,34 +45556,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1312), 1, + ACTIONS(1298), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45425,7 +45595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45433,7 +45603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45453,10 +45623,10 @@ static const uint16_t ts_small_parse_table[] = { [18558] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45469,34 +45639,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1314), 1, + ACTIONS(1300), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45508,7 +45678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45516,7 +45686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45533,64 +45703,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18666] = 24, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(888), 1, - anon_sym_yield, - ACTIONS(1024), 1, + [18666] = 25, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1110), 1, - anon_sym_LPAREN, - ACTIONS(1264), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1268), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + ACTIONS(1302), 1, + anon_sym_RBRACE, + STATE(1007), 1, sym_string, - STATE(1300), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1885), 1, + STATE(2089), 1, sym_expression, - STATE(2481), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2606), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - STATE(2344), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45598,7 +45769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45615,13 +45786,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18772] = 25, + [18774] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45634,34 +45805,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1316), 1, + ACTIONS(1304), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45673,7 +45844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45681,7 +45852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45698,13 +45869,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18880] = 25, + [18882] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45717,34 +45888,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1318), 1, + ACTIONS(1306), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45756,7 +45927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45764,7 +45935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45781,13 +45952,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18988] = 25, + [18990] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45800,34 +45971,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1320), 1, + ACTIONS(1308), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -45839,7 +46010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45847,7 +46018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45864,65 +46035,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19096] = 25, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [19098] = 25, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - ACTIONS(1322), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1310), 1, anon_sym_from, - STATE(976), 1, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(1006), 1, sym_primary_expression, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1874), 1, sym_expression, - STATE(2329), 1, + STATE(2545), 1, sym_expression_list, - STATE(2517), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(1124), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(1102), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45930,7 +46101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45947,13 +46118,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19204] = 25, + [19206] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -45966,34 +46137,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1324), 1, + ACTIONS(1314), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -46005,7 +46176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46013,7 +46184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46030,65 +46201,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19312] = 25, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [19314] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(1326), 1, - anon_sym_RBRACE, - STATE(1032), 1, + ACTIONS(1316), 1, + anon_sym_from, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1813), 1, sym_expression, - STATE(2520), 1, + STATE(2610), 1, + sym_expression_list, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2339), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1102), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46096,7 +46267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46113,65 +46284,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19420] = 25, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [19422] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(1328), 1, - anon_sym_RBRACE, - STATE(1032), 1, + ACTIONS(1318), 1, + anon_sym_STAR, + ACTIONS(1322), 1, + anon_sym_from, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1788), 1, sym_expression, - STATE(2520), 1, + STATE(2338), 1, + sym_expression_list, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(2339), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1320), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46179,7 +46350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46196,13 +46367,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19528] = 25, + [19530] = 25, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -46215,34 +46386,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(834), 1, + ACTIONS(850), 1, anon_sym_STAR_STAR, - ACTIONS(1330), 1, + ACTIONS(1324), 1, anon_sym_RBRACE, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(2089), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(2339), 2, + STATE(2606), 2, sym_dictionary_splat, sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -46254,7 +46425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46262,7 +46433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46279,65 +46450,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19636] = 25, - ACTIONS(299), 1, + [19638] = 24, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(834), 1, + anon_sym_yield, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + ACTIONS(1088), 1, anon_sym_LPAREN, - ACTIONS(410), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1274), 1, anon_sym_STAR, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - ACTIONS(1332), 1, - anon_sym_RBRACE, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1933), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(2339), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + STATE(2563), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46345,7 +46515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46363,63 +46533,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19744] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1336), 1, + ACTIONS(1328), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46427,7 +46597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46445,63 +46615,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19851] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1338), 1, + ACTIONS(1330), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46509,7 +46679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46527,63 +46697,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [19958] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1340), 1, + ACTIONS(1332), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46591,7 +46761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46609,63 +46779,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20065] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1342), 1, + ACTIONS(1334), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46673,7 +46843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46691,63 +46861,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [20172] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1344), 1, + ACTIONS(1336), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46755,7 +46925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46772,64 +46942,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20279] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [20279] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1346), 1, - anon_sym_RBRACK, - STATE(1057), 1, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1797), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2565), 1, + sym_expression_list, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(1338), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46837,7 +47006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46854,64 +47023,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20386] = 25, - ACTIONS(804), 1, + [20384] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1348), 1, + ACTIONS(1340), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46919,7 +47088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46936,66 +47105,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20493] = 19, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [20491] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1135), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, + anon_sym_STAR, + ACTIONS(1326), 1, + anon_sym_COLON, + ACTIONS(1342), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, + STATE(1881), 1, + sym_expression, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(674), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(794), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1365), 16, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47012,64 +47187,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20588] = 25, - ACTIONS(804), 1, + [20598] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1350), 1, + ACTIONS(1344), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47077,7 +47252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47094,64 +47269,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20695] = 25, - ACTIONS(804), 1, + [20705] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1352), 1, + ACTIONS(1346), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47159,7 +47334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47176,72 +47351,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20802] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [20812] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, + anon_sym_STAR, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1304), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1354), 1, - anon_sym_RBRACK, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1815), 1, - sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(1348), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1452), 16, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47258,64 +47427,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20909] = 25, - ACTIONS(804), 1, + [20907] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1356), 1, + ACTIONS(1350), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47323,7 +47492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47340,63 +47509,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21016] = 24, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [21014] = 24, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(410), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(850), 1, + anon_sym_STAR_STAR, + STATE(1007), 1, sym_string, - STATE(1118), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(2089), 1, sym_expression, - STATE(2316), 1, - sym_expression_list, - STATE(2517), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1358), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + STATE(2606), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47404,7 +47573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47421,66 +47590,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21121] = 19, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [21119] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1135), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, + anon_sym_STAR, + ACTIONS(1354), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, + STATE(1879), 1, + sym_expression, + STATE(2626), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1352), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1360), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(794), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1365), 16, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47497,64 +47671,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21216] = 25, - ACTIONS(804), 1, + [21224] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1362), 1, + ACTIONS(1356), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47562,7 +47736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47579,63 +47753,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21323] = 24, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [21331] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1364), 1, - anon_sym_from, - STATE(976), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + ACTIONS(1358), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1881), 1, sym_expression, - STATE(2517), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1272), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47643,7 +47818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47660,64 +47835,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21428] = 25, - ACTIONS(804), 1, + [21438] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1366), 1, + ACTIONS(1360), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47725,7 +47900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47742,64 +47917,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21535] = 25, - ACTIONS(804), 1, + [21545] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1368), 1, + ACTIONS(1362), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47807,7 +47982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47824,64 +47999,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21642] = 25, - ACTIONS(299), 1, + [21652] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1372), 1, - anon_sym_if, - ACTIONS(1374), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(1364), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1868), 1, + STATE(1881), 1, sym_expression, - STATE(2460), 1, - sym_if_clause, - STATE(2520), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47889,7 +48064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47906,64 +48081,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21749] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [21759] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1376), 1, - anon_sym_RBRACK, - STATE(1057), 1, + ACTIONS(1366), 1, + anon_sym_from, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1839), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(1252), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47971,7 +48145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47988,63 +48162,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21856] = 24, - ACTIONS(804), 1, + [21864] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1380), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1368), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1881), 1, sym_expression, - STATE(2350), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1378), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48052,7 +48227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48069,64 +48244,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21961] = 25, - ACTIONS(804), 1, + [21971] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1382), 1, + ACTIONS(1370), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48134,7 +48309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48151,64 +48326,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22068] = 25, - ACTIONS(804), 1, + [22078] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1384), 1, + ACTIONS(1372), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48216,7 +48391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48233,64 +48408,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22175] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [22185] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1386), 1, - anon_sym_RBRACK, - STATE(1057), 1, + ACTIONS(1374), 1, + anon_sym_from, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1839), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(1276), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48298,7 +48472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48315,64 +48489,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22282] = 25, - ACTIONS(804), 1, + [22290] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1388), 1, + ACTIONS(1376), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48380,7 +48554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48397,64 +48571,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22389] = 25, - ACTIONS(804), 1, + [22397] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1380), 1, anon_sym_COLON, - ACTIONS(1390), 1, - anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1868), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(1378), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48462,7 +48635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48479,63 +48652,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22496] = 24, - ACTIONS(299), 1, + [22502] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(834), 1, - anon_sym_STAR_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + ACTIONS(1382), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1881), 1, sym_expression, - STATE(2520), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(2339), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48543,7 +48717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48560,64 +48734,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22601] = 25, - ACTIONS(804), 1, + [22609] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1392), 1, + ACTIONS(1384), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48625,7 +48799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48642,64 +48816,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22708] = 25, - ACTIONS(804), 1, + [22716] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1394), 1, + ACTIONS(1386), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48707,7 +48881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48724,64 +48898,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22815] = 25, - ACTIONS(804), 1, + [22823] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1396), 1, + ACTIONS(1388), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48789,7 +48963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48806,64 +48980,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22922] = 25, - ACTIONS(804), 1, + [22930] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1398), 1, + ACTIONS(1390), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48871,7 +49045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48888,64 +49062,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23029] = 25, - ACTIONS(804), 1, + [23037] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1400), 1, + ACTIONS(1392), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48953,7 +49127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48970,64 +49144,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23136] = 25, - ACTIONS(804), 1, + [23144] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1402), 1, + ACTIONS(1394), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49035,7 +49209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49052,63 +49226,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23243] = 24, - ACTIONS(804), 1, + [23251] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1406), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1396), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1804), 1, + STATE(1881), 1, sym_expression, - STATE(2350), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49116,7 +49291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49133,72 +49308,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23348] = 25, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [23358] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, + anon_sym_STAR, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1304), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1408), 1, - anon_sym_RBRACK, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1815), 1, - sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(666), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1452), 16, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49215,64 +49384,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23455] = 25, - ACTIONS(804), 1, + [23453] = 25, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1410), 1, + ACTIONS(1398), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49280,7 +49449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49297,63 +49466,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23562] = 24, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [23560] = 25, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1412), 1, - anon_sym_from, - STATE(976), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + ACTIONS(1400), 1, + anon_sym_RBRACK, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1881), 1, sym_expression, - STATE(2517), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1270), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49361,7 +49531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49379,63 +49549,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [23667] = 25, - ACTIONS(804), 1, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - ACTIONS(1414), 1, + ACTIONS(1402), 1, anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1881), 1, sym_expression, - STATE(2271), 1, + STATE(2561), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49443,7 +49613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49460,64 +49630,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23774] = 25, - ACTIONS(804), 1, + [23774] = 23, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1134), 1, + anon_sym_type, + ACTIONS(1138), 1, + anon_sym_await, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - ACTIONS(1416), 1, - anon_sym_RBRACK, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1250), 1, + anon_sym_lambda, + STATE(1010), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1846), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2032), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49525,7 +49692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49542,64 +49709,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23881] = 25, - ACTIONS(299), 1, + [23876] = 23, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - ACTIONS(1372), 1, - anon_sym_if, - ACTIONS(1418), 1, - anon_sym_COLON, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1868), 1, + STATE(1966), 1, sym_expression, - STATE(2484), 1, - sym_if_clause, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1252), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49607,7 +49771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49624,61 +49788,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23988] = 23, - ACTIONS(760), 1, + [23978] = 23, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(886), 1, + anon_sym_not, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(1276), 1, + ACTIONS(1250), 1, anon_sym_lambda, - STATE(995), 1, + STATE(1010), 1, sym_primary_expression, - STATE(998), 1, + STATE(1011), 1, sym_string, - STATE(1239), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1754), 1, + STATE(1802), 1, sym_expression, - STATE(2349), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1973), 2, + STATE(2012), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49686,7 +49850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49703,8 +49867,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24090] = 19, - ACTIONS(318), 1, + [24080] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -49714,15 +49878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1135), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -49730,17 +49894,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(279), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(666), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -49755,13 +49919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_PIPE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49778,62 +49942,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24184] = 24, - ACTIONS(804), 1, + [24174] = 23, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1849), 1, sym_expression, - STATE(2149), 1, - sym_slice, - STATE(2350), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2104), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49841,7 +50004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49858,62 +50021,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24288] = 24, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [24276] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1839), 1, sym_expression, - STATE(2076), 1, - sym_slice, - STATE(2350), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(1404), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49921,7 +50083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49938,61 +50100,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24392] = 23, - ACTIONS(804), 1, + [24378] = 23, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1134), 1, + anon_sym_type, + ACTIONS(1138), 1, + anon_sym_await, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1250), 1, + anon_sym_lambda, + STATE(1010), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1853), 1, + STATE(1825), 1, sym_expression, - STATE(2350), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(1420), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2063), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50000,7 +50162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50017,62 +50179,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24494] = 24, - ACTIONS(738), 1, + [24480] = 23, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1264), 1, - sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1228), 1, anon_sym_STAR, - ACTIONS(1422), 1, - anon_sym_RPAREN, - STATE(1004), 1, + ACTIONS(1234), 1, + anon_sym_lambda, + STATE(979), 1, sym_primary_expression, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1853), 1, sym_expression, - STATE(2311), 1, - sym_with_item, - STATE(2481), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(2024), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50080,7 +50241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50097,13 +50258,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24598] = 23, - ACTIONS(65), 1, - anon_sym_not, + [24582] = 23, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(381), 1, @@ -50112,34 +50273,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1839), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1424), 2, + ACTIONS(1406), 2, sym__newline, anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -50151,7 +50312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50159,7 +50320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50176,62 +50337,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24700] = 24, - ACTIONS(804), 1, + [24684] = 23, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1815), 1, + STATE(1804), 1, sym_expression, - STATE(2271), 1, - sym_slice, - STATE(2350), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2112), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50239,7 +50399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50256,70 +50416,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24804] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [24786] = 20, + ACTIONS(294), 1, + anon_sym_in, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, + ACTIONS(316), 1, + anon_sym_COMMA, ACTIONS(324), 1, sym_string_start, - ACTIONS(406), 1, - sym_identifier, ACTIONS(408), 1, anon_sym_LPAREN, + ACTIONS(410), 1, + anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1426), 1, - anon_sym_COLON, - STATE(1032), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1826), 1, - sym_expression, - STATE(2336), 1, - sym_with_item, - STATE(2520), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1677), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50336,62 +50492,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24908] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [24882] = 23, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1804), 1, sym_expression, - STATE(2124), 1, - sym_with_item, - STATE(2393), 1, - sym_with_clause, - STATE(2520), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1996), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1118), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50399,7 +50554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50416,62 +50571,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25012] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [24984] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1430), 1, - anon_sym_COLON, - STATE(1032), 1, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1860), 1, sym_expression, - STATE(2336), 1, - sym_with_item, - STATE(2520), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1408), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50479,7 +50633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50496,61 +50650,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25116] = 23, - ACTIONS(782), 1, + [25086] = 23, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - STATE(1045), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1152), 1, sym_string, - STATE(1400), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1952), 1, sym_expression, - STATE(2411), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1955), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(1352), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50558,7 +50712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50575,62 +50729,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25218] = 24, - ACTIONS(738), 1, + [25188] = 23, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_STAR, - ACTIONS(1432), 1, - anon_sym_RPAREN, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1966), 1, sym_expression, - STATE(2311), 1, - sym_with_item, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(1276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50638,7 +50791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50655,61 +50808,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25322] = 23, - ACTIONS(714), 1, + [25290] = 23, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(1258), 1, + ACTIONS(1250), 1, anon_sym_lambda, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1747), 1, + STATE(1802), 1, sym_expression, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1928), 2, + STATE(1931), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50717,7 +50870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50734,61 +50887,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25424] = 23, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + [25392] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(968), 1, sym_string, - STATE(1300), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1860), 1, sym_expression, - STATE(2481), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(1410), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50796,7 +50949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50813,61 +50966,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25526] = 23, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [25494] = 24, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(1086), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, - ACTIONS(1094), 1, - anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1412), 1, + anon_sym_LPAREN, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1258), 1, - anon_sym_lambda, - STATE(1024), 1, + STATE(1007), 1, sym_string, - STATE(1026), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1908), 1, sym_expression, - STATE(2534), 1, + STATE(2366), 1, + sym_with_item, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2680), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1902), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1090), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50875,7 +51029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50892,61 +51046,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25628] = 23, - ACTIONS(714), 1, + [25598] = 23, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1258), 1, - anon_sym_lambda, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1988), 1, sym_expression, - STATE(2534), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1922), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(1276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50954,7 +51108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50971,62 +51125,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25730] = 24, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, + [25700] = 24, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1412), 1, + anon_sym_LPAREN, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1908), 1, sym_expression, - STATE(2244), 1, - sym_slice, - STATE(2350), 1, + STATE(2366), 1, + sym_with_item, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2767), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51034,7 +51188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51051,61 +51205,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25834] = 23, - ACTIONS(804), 1, + [25804] = 23, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1234), 1, + anon_sym_lambda, + STATE(979), 1, sym_primary_expression, - STATE(1495), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1844), 1, + STATE(1836), 1, sym_expression, - STATE(2350), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2106), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51113,7 +51267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51130,62 +51284,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25936] = 24, - ACTIONS(804), 1, + [25906] = 23, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1838), 1, sym_expression, - STATE(2192), 1, - sym_slice, - STATE(2350), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2105), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51193,7 +51346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51210,61 +51363,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26040] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [26008] = 24, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1416), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1977), 1, sym_expression, - STATE(2517), 1, + STATE(2603), 1, + sym_with_item, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(1434), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51272,7 +51426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51289,61 +51443,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26142] = 23, - ACTIONS(782), 1, + [26112] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - STATE(1045), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1152), 1, sym_string, - STATE(1400), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1881), 1, sym_expression, - STATE(2411), 1, + STATE(2561), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1876), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51351,7 +51506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51368,61 +51523,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26244] = 23, - ACTIONS(714), 1, + [26216] = 23, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1258), 1, - anon_sym_lambda, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1913), 1, sym_expression, - STATE(2534), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1863), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(1418), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51430,7 +51585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51447,61 +51602,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26346] = 23, - ACTIONS(804), 1, + [26318] = 23, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1988), 1, sym_expression, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1272), 2, + ACTIONS(1252), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51509,7 +51664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51526,61 +51681,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26448] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [26420] = 24, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1832), 1, sym_expression, - STATE(2517), 1, + STATE(2436), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1436), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51588,7 +51744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51605,61 +51761,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26550] = 23, - ACTIONS(782), 1, - anon_sym_LPAREN, - ACTIONS(790), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, + [26524] = 24, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1166), 1, - anon_sym_type, - ACTIONS(1170), 1, - anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - STATE(1045), 1, - sym_primary_expression, - STATE(1047), 1, + ACTIONS(1420), 1, + anon_sym_COLON, + STATE(1007), 1, sym_string, - STATE(1400), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1908), 1, sym_expression, - STATE(2411), 1, + STATE(2586), 1, + sym_with_item, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1841), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1164), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51667,7 +51824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51684,62 +51841,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26652] = 24, - ACTIONS(804), 1, + [26628] = 23, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(1010), 1, - anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1228), 1, anon_sym_STAR, - ACTIONS(1334), 1, - anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1234), 1, + anon_sym_lambda, + STATE(979), 1, sym_primary_expression, - STATE(1495), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1798), 1, sym_expression, - STATE(2105), 1, - sym_slice, - STATE(2350), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(2050), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51747,7 +51903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51764,61 +51920,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26756] = 23, - ACTIONS(714), 1, + [26730] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1258), 1, - anon_sym_lambda, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1812), 1, sym_expression, - STATE(2534), 1, + STATE(2292), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1920), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51826,7 +51983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51843,65 +52000,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26858] = 19, - ACTIONS(318), 1, + [26834] = 24, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, ACTIONS(324), 1, sym_string_start, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, + ACTIONS(406), 1, + sym_identifier, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_type, - ACTIONS(685), 1, - anon_sym_await, - STATE(1032), 1, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1412), 1, + anon_sym_LPAREN, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1135), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1908), 1, + sym_expression, + STATE(2366), 1, + sym_with_item, + STATE(2677), 1, + sym__named_expression_lhs, + STATE(2704), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(1360), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1365), 16, + STATE(1728), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51918,8 +52080,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26952] = 19, - ACTIONS(318), 1, + [26938] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -51929,15 +52091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1135), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -51945,17 +52107,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(279), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1348), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -51970,13 +52132,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_PIPE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51993,62 +52155,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27046] = 24, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, + [27032] = 24, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1422), 1, anon_sym_COLON, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1908), 1, sym_expression, - STATE(2143), 1, - sym_slice, - STATE(2350), 1, + STATE(2586), 1, + sym_with_item, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52056,7 +52218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52073,61 +52235,141 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27150] = 23, - ACTIONS(782), 1, + [27136] = 24, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1412), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, + sym_string, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(1908), 1, + sym_expression, + STATE(2366), 1, + sym_with_item, + STATE(2677), 1, + sym__named_expression_lhs, + STATE(2697), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(290), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1282), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27240] = 23, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1228), 1, anon_sym_STAR, - ACTIONS(1250), 1, + ACTIONS(1234), 1, anon_sym_lambda, - STATE(1045), 1, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1400), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1853), 1, sym_expression, - STATE(2411), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1976), 2, + STATE(1932), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52135,7 +52377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52152,61 +52394,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27252] = 23, - ACTIONS(804), 1, + [27342] = 24, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1424), 1, + anon_sym_RPAREN, + STATE(1006), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1977), 1, sym_expression, - STATE(2350), 1, + STATE(2603), 1, + sym_with_item, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(1270), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52214,7 +52457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52231,62 +52474,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27354] = 24, - ACTIONS(804), 1, + [27446] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1833), 1, sym_expression, - STATE(2123), 1, + STATE(2359), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52294,7 +52537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52311,62 +52554,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27458] = 24, - ACTIONS(804), 1, + [27550] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1852), 1, sym_expression, - STATE(2114), 1, + STATE(2370), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52374,7 +52617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52391,62 +52634,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27562] = 24, - ACTIONS(804), 1, + [27654] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1326), 1, anon_sym_COLON, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1819), 1, sym_expression, - STATE(2211), 1, + STATE(2387), 1, sym_slice, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52454,7 +52697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52471,61 +52714,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27666] = 23, - ACTIONS(804), 1, + [27758] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1852), 1, + STATE(1809), 1, sym_expression, - STATE(2350), 1, + STATE(2454), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1438), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52533,7 +52777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52550,70 +52794,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27768] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [27862] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, ACTIONS(324), 1, sym_string_start, - ACTIONS(406), 1, - sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(410), 1, + anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(1032), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1826), 1, - sym_expression, - STATE(2124), 1, - sym_with_item, - STATE(2421), 1, - sym_with_clause, - STATE(2520), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, + ACTIONS(279), 2, + anon_sym_DOT, + anon_sym_SLASH, ACTIONS(316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(320), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1677), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 16, + ACTIONS(277), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52630,61 +52869,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27872] = 23, - ACTIONS(738), 1, + [27956] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1818), 1, sym_expression, - STATE(2481), 1, + STATE(2495), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1272), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52692,7 +52932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52709,62 +52949,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27974] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [28060] = 23, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(1242), 1, + anon_sym_lambda, + STATE(1031), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1804), 1, sym_expression, - STATE(2124), 1, - sym_with_item, - STATE(2428), 1, - sym_with_clause, - STATE(2520), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1947), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1118), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52772,7 +53011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52789,61 +53028,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28078] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [28162] = 23, + ACTIONS(774), 1, + anon_sym_LPAREN, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(886), 1, + anon_sym_not, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1250), 1, + anon_sym_lambda, + STATE(1010), 1, sym_primary_expression, - STATE(978), 1, + STATE(1011), 1, sym_string, - STATE(1118), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1802), 1, sym_expression, - STATE(2517), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(1440), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + STATE(1958), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52851,7 +53090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52868,61 +53107,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28180] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [28264] = 24, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1829), 1, sym_expression, - STATE(2517), 1, + STATE(2487), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1442), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52930,7 +53170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52947,61 +53187,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28282] = 23, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [28368] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, + ACTIONS(404), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, + STATE(968), 1, sym_string, - STATE(1239), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1860), 1, sym_expression, - STATE(2349), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1977), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(1426), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53009,7 +53249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53026,62 +53266,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28384] = 24, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [28470] = 24, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(1022), 1, + anon_sym_type, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_await, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1428), 1, - anon_sym_LPAREN, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1845), 1, sym_expression, - STATE(2124), 1, - sym_with_item, - STATE(2351), 1, - sym_with_clause, - STATE(2520), 1, + STATE(2395), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53089,7 +53329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53106,61 +53346,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28488] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [28574] = 23, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1949), 1, sym_expression, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(1444), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(1428), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53168,7 +53408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53185,12 +53425,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28590] = 20, - ACTIONS(294), 1, - anon_sym_in, - ACTIONS(314), 1, - anon_sym_COMMA, - ACTIONS(318), 1, + [28676] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -53200,15 +53436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1135), 1, + STATE(1078), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -53217,88 +53453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_SLASH, ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(277), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1365), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [28686] = 19, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(410), 1, - anon_sym_STAR, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_type, - ACTIONS(685), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1135), 1, - sym_primary_expression, - STATE(1324), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - ACTIONS(674), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(310), 3, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -53313,13 +53477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_PIPE, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53336,61 +53500,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28780] = 23, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [28770] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(846), 1, + ACTIONS(404), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, + STATE(968), 1, sym_string, - STATE(1239), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1860), 1, sym_expression, - STATE(2349), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1978), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(1430), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53398,7 +53562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53415,61 +53579,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28882] = 23, - ACTIONS(760), 1, + [28872] = 23, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(846), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1228), 1, anon_sym_STAR, - ACTIONS(1276), 1, + ACTIONS(1234), 1, anon_sym_lambda, - STATE(995), 1, + STATE(979), 1, sym_primary_expression, - STATE(998), 1, + STATE(987), 1, sym_string, - STATE(1239), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1853), 1, sym_expression, - STATE(2349), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1903), 2, + STATE(1960), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53477,7 +53641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53494,61 +53658,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28984] = 23, - ACTIONS(782), 1, + [28974] = 24, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(1250), 1, - anon_sym_lambda, - STATE(1045), 1, + ACTIONS(1326), 1, + anon_sym_COLON, + STATE(1083), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1152), 1, sym_string, - STATE(1400), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(1814), 1, sym_expression, - STATE(2411), 1, + STATE(2310), 1, + sym_slice, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - STATE(1911), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53556,7 +53721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53573,62 +53738,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29086] = 24, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, + [29078] = 23, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1334), 1, + ACTIONS(1432), 1, anon_sym_COLON, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1961), 1, sym_expression, - STATE(2196), 1, - sym_slice, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53636,7 +53799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53653,61 +53816,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29190] = 23, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [29179] = 23, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(846), 1, - anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1276), 1, - anon_sym_lambda, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, + STATE(1007), 1, sym_string, - STATE(1239), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1884), 1, sym_expression, - STATE(2349), 1, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2727), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1900), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(832), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53715,7 +53877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53732,13 +53894,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29292] = 23, + [29280] = 11, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_EQ, + ACTIONS(326), 1, + anon_sym_COLON, + ACTIONS(1434), 1, + sym_identifier, + ACTIONS(1436), 1, + sym_string_start, + STATE(2377), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 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(316), 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(279), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [29357] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -53749,31 +53977,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1873), 1, sym_expression, - STATE(2437), 1, - sym_expression_list, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2713), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -53785,7 +54013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53793,7 +54021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53810,13 +54038,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29393] = 23, + [29458] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -53827,31 +54055,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1446), 1, - anon_sym_COLON, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1908), 1, sym_expression, - STATE(2520), 1, + STATE(2586), 1, + sym_with_item, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -53863,7 +54091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53871,7 +54099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53888,13 +54116,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29494] = 23, + [29559] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -53905,31 +54133,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1270), 1, - anon_sym_COLON, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1438), 1, + anon_sym_COLON, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1961), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -53941,7 +54169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53949,7 +54177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53966,13 +54194,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29595] = 23, + [29660] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -53983,31 +54211,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1440), 1, + anon_sym_COLON, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1961), 1, sym_expression, - STATE(2446), 1, - sym_expression_list, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54019,7 +54247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54027,7 +54255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54044,13 +54272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29696] = 23, + [29761] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54061,31 +54289,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1448), 1, - anon_sym_COLON, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1866), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2722), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54097,7 +54325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54105,7 +54333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54122,25 +54350,36 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29797] = 10, + [29862] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1450), 1, - anon_sym_for, - ACTIONS(1452), 1, - anon_sym_with, - ACTIONS(1454), 1, - anon_sym_def, + ACTIONS(1434), 1, + sym_identifier, + ACTIONS(1436), 1, + sym_string_start, + STATE(2377), 1, + sym_string, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(294), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(314), 13, - anon_sym_PLUS_EQ, + ACTIONS(277), 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(316), 13, + anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -54153,17 +54392,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 15, + ACTIONS(279), 22, + anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + anon_sym_is, + [29937] = 10, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(1442), 1, + anon_sym_for, + ACTIONS(1444), 1, + anon_sym_with, + ACTIONS(1446), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 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(279), 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, @@ -54187,60 +54480,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [29872] = 23, - ACTIONS(299), 1, + [30012] = 23, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1977), 1, sym_expression, - STATE(2447), 1, - sym_expression_list, - STATE(2520), 1, + STATE(2603), 1, + sym_with_item, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54248,7 +54541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54265,13 +54558,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29973] = 23, + [30113] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54282,31 +54575,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1456), 1, + ACTIONS(1448), 1, anon_sym_COLON, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1856), 1, + STATE(1909), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54318,7 +54611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54326,7 +54619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54343,13 +54636,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30074] = 23, + [30214] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54360,31 +54653,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1458), 1, + ACTIONS(1276), 1, anon_sym_COLON, - STATE(1032), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1937), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54396,7 +54689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54404,7 +54697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54421,13 +54714,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30175] = 23, + [30315] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54438,31 +54731,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1460), 1, + ACTIONS(1252), 1, anon_sym_COLON, - STATE(1032), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1937), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54474,7 +54767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54482,7 +54775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54499,60 +54792,138 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30276] = 23, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + [30416] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(968), 1, sym_string, - STATE(1300), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1878), 1, + STATE(1835), 1, sym_expression, - STATE(2311), 1, - sym_with_item, - STATE(2481), 1, + STATE(2585), 1, + sym_expression_list, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1077), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [30517] = 23, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, + sym_string, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(1899), 1, + sym_expression, + STATE(2621), 1, + sym_expression_list, + STATE(2677), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54560,7 +54931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54577,35 +54948,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30377] = 10, + [30618] = 10, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(1462), 1, - sym_identifier, - ACTIONS(1464), 1, - sym_string_start, - STATE(2132), 1, - sym_string, + ACTIONS(1450), 1, + anon_sym_for, + ACTIONS(1452), 1, + anon_sym_with, + ACTIONS(1454), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(294), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(277), 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(314), 13, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -54619,36 +54979,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(279), 22, - anon_sym_as, + ACTIONS(279), 15, anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, + ACTIONS(277), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_is, - [30452] = 23, + [30693] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54659,31 +55030,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1456), 1, + anon_sym_COLON, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(1992), 1, sym_expression, - STATE(2476), 1, - sym_expression_list, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54695,7 +55066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54703,7 +55074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54720,13 +55091,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30553] = 23, + [30794] = 23, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -54737,31 +55108,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1466), 1, + ACTIONS(1458), 1, anon_sym_COLON, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1864), 1, + STATE(1961), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -54773,7 +55144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54781,7 +55152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54798,60 +55169,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30654] = 23, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [30895] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1272), 1, - anon_sym_COLON, - ACTIONS(1370), 1, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1806), 1, sym_expression, - STATE(2520), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1118), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54859,7 +55228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54876,60 +55245,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30755] = 23, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [30993] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(1775), 1, sym_expression, - STATE(2320), 1, - sym_expression_list, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54937,7 +55304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54954,267 +55321,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30856] = 11, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_COLON, - ACTIONS(1462), 1, - sym_identifier, - ACTIONS(1464), 1, + [31091] = 22, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(724), 1, sym_string_start, - STATE(2132), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, + anon_sym_type, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, + anon_sym_await, + ACTIONS(1228), 1, + anon_sym_STAR, + STATE(979), 1, + sym_primary_expression, + STATE(987), 1, sym_string, + STATE(1214), 1, + sym_list_splat_pattern, + STATE(1760), 1, + sym_expression, + STATE(2669), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 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(314), 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(279), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - anon_sym_is, - [30933] = 10, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(1468), 1, - anon_sym_for, - ACTIONS(1470), 1, - anon_sym_with, - ACTIONS(1472), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(314), 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(279), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [31008] = 23, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1826), 1, - sym_expression, - STATE(2336), 1, - sym_with_item, - STATE(2520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1677), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1365), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [31109] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, - sym_string, - STATE(1118), 1, - sym_list_splat_pattern, - STATE(1613), 1, - sym_expression, - STATE(2517), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(73), 2, - sym_ellipsis, - sym_float, - ACTIONS(67), 3, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55222,7 +55380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55239,58 +55397,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31207] = 22, - ACTIONS(299), 1, + [31189] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1979), 1, + STATE(1935), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55298,7 +55456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55315,58 +55473,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31305] = 22, - ACTIONS(689), 1, + [31287] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1084), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(1006), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1836), 1, + STATE(1938), 1, sym_expression, - STATE(2501), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55374,7 +55532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55391,58 +55549,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31403] = 22, - ACTIONS(299), 1, + [31385] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1842), 1, + STATE(1727), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55450,7 +55608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55467,58 +55625,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31501] = 22, - ACTIONS(804), 1, + [31483] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1134), 1, + anon_sym_type, + ACTIONS(1138), 1, + anon_sym_await, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1710), 1, + STATE(1824), 1, sym_expression, - STATE(2350), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55526,7 +55684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55543,58 +55701,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31599] = 22, - ACTIONS(714), 1, + [31581] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, ACTIONS(886), 1, + anon_sym_not, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1086), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1138), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1843), 1, sym_expression, - STATE(2534), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55602,7 +55760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55619,61 +55777,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31697] = 23, - ACTIONS(804), 1, + [31679] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1008), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1304), 1, - anon_sym_STAR, - ACTIONS(1474), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1478), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1480), 1, + ACTIONS(1138), 1, anon_sym_await, - STATE(1057), 1, - sym_string, - STATE(1284), 1, + ACTIONS(1244), 1, + anon_sym_STAR, + STATE(1010), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(1817), 1, sym_expression, - STATE(2350), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1418), 2, - sym_attribute, - sym_subscript, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1476), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55681,9 +55836,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 14, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -55696,58 +55853,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31797] = 22, - ACTIONS(760), 1, + [31777] = 22, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(846), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1083), 1, sym_primary_expression, - STATE(998), 1, + STATE(1152), 1, sym_string, - STATE(1239), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1957), 1, sym_expression, - STATE(2349), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55755,7 +55912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55772,58 +55929,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31895] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [31875] = 22, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(1120), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1031), 1, sym_primary_expression, - STATE(978), 1, + STATE(1034), 1, sym_string, - STATE(1118), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1619), 1, + STATE(1807), 1, sym_expression, - STATE(2517), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55831,7 +55988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55848,58 +56005,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31993] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [31973] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1034), 1, + sym_string, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1890), 1, sym_expression, - STATE(2520), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1118), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55907,7 +56064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55924,13 +56081,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32091] = 22, - ACTIONS(65), 1, - anon_sym_not, + [32071] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(381), 1, @@ -55939,31 +56096,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1614), 1, + STATE(1688), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -55975,7 +56132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55983,7 +56140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56000,53 +56157,179 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32189] = 22, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [32169] = 9, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1466), 1, + anon_sym_except_STAR, + ACTIONS(1468), 1, + anon_sym_finally, + STATE(707), 1, + sym_else_clause, + STATE(773), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(602), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1462), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(734), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1460), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32241] = 9, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1468), 1, + anon_sym_finally, + ACTIONS(1470), 1, + anon_sym_except, + STATE(707), 1, + sym_else_clause, + STATE(773), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1462), 12, + sym__dedent, sym_string_start, - ACTIONS(884), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1460), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(886), 1, anon_sym_lambda, - ACTIONS(1086), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1092), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32313] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1966), 1, sym_expression, - STATE(2534), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -56059,7 +56342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56076,13 +56359,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32287] = 22, - ACTIONS(65), 1, - anon_sym_not, + [32411] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(381), 1, @@ -56091,31 +56374,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1617), 1, + STATE(1686), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -56127,7 +56410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56135,7 +56418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56152,58 +56435,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32385] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [32509] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(1118), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1615), 1, + STATE(2082), 1, sym_expression, - STATE(2517), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56211,7 +56494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56228,58 +56511,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32483] = 22, - ACTIONS(689), 1, + [32607] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, - anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1228), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(1272), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1698), 1, + STATE(1779), 1, sym_expression, - STATE(2501), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56287,7 +56570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56304,58 +56587,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32581] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [32705] = 23, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1288), 1, + anon_sym_STAR, + ACTIONS(1472), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(1476), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1478), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(976), 1, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1918), 1, sym_expression, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + STATE(1503), 2, + sym_attribute, + sym_subscript, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1474), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56363,11 +56649,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -56380,58 +56664,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32679] = 22, - ACTIONS(299), 1, + [32805] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1988), 1, sym_expression, - STATE(2520), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56439,7 +56723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56456,58 +56740,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32777] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [32903] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1692), 1, + STATE(1691), 1, sym_expression, - STATE(2520), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56515,7 +56799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56532,58 +56816,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32875] = 22, - ACTIONS(689), 1, + [33001] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1108), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + STATE(972), 1, sym_primary_expression, - STATE(1272), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1716), 1, + STATE(1785), 1, sym_expression, - STATE(2501), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56591,7 +56875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56608,58 +56892,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32973] = 22, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [33099] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(404), 1, anon_sym_await, - STATE(989), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(990), 1, + STATE(969), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1831), 1, sym_expression, - STATE(2501), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56667,7 +56951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56684,58 +56968,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33071] = 22, - ACTIONS(782), 1, - anon_sym_LPAREN, - ACTIONS(790), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, + [33197] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(800), 1, - sym_string_start, - ACTIONS(862), 1, - anon_sym_not, - ACTIONS(864), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1045), 1, - sym_primary_expression, - STATE(1047), 1, + STATE(1007), 1, sym_string, - STATE(1400), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(2087), 1, sym_expression, - STATE(2411), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1164), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56743,7 +57027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56760,58 +57044,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33169] = 22, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [33295] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(404), 1, anon_sym_await, - STATE(989), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(990), 1, + STATE(969), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1719), 1, + STATE(1677), 1, sym_expression, - STATE(2501), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56819,7 +57103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56836,134 +57120,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33267] = 22, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [33393] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(404), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, - sym_primary_expression, - STATE(1272), 1, - sym_list_splat_pattern, - STATE(1711), 1, - sym_expression, - STATE(2501), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(701), 2, - sym_ellipsis, - sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(687), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1126), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1727), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1282), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [33365] = 22, - ACTIONS(738), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, - sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(968), 1, sym_string, - STATE(1300), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1828), 1, sym_expression, - STATE(2481), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56971,7 +57179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56988,13 +57196,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33463] = 22, + [33491] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -57005,29 +57213,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1743), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -57039,7 +57247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57047,7 +57255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57064,58 +57272,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33561] = 22, - ACTIONS(782), 1, + [33589] = 23, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1480), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1484), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1486), 1, anon_sym_await, - ACTIONS(1244), 1, - anon_sym_STAR, - STATE(1045), 1, - sym_primary_expression, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1769), 1, + STATE(1221), 1, + sym_primary_expression, + STATE(2001), 1, sym_expression, - STATE(2411), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + STATE(1256), 2, + sym_attribute, + sym_subscript, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1482), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57123,11 +57334,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1258), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57140,58 +57349,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33659] = 22, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + [33689] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(968), 1, sym_string, - STATE(1300), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1832), 1, + STATE(1860), 1, sym_expression, - STATE(2481), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57199,7 +57408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57216,58 +57425,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33757] = 22, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, + [33787] = 22, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(1007), 1, sym_string, - STATE(1300), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1846), 1, + STATE(2040), 1, sym_expression, - STATE(2481), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57275,7 +57484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57292,58 +57501,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33855] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [33885] = 23, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1312), 1, + anon_sym_STAR, + ACTIONS(1488), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(1492), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1494), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(976), 1, + STATE(1006), 1, sym_primary_expression, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1620), 1, + STATE(1941), 1, sym_expression, - STATE(2517), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + STATE(1501), 2, + sym_attribute, + sym_subscript, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1490), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57351,11 +57563,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1304), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57368,13 +57578,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33953] = 22, + [33985] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -57385,29 +57595,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1891), 1, + STATE(1998), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -57419,7 +57629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57427,7 +57637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57444,58 +57654,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34051] = 22, - ACTIONS(738), 1, + [34083] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1300), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1689), 1, + STATE(1792), 1, sym_expression, - STATE(2481), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57503,7 +57713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57520,58 +57730,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34149] = 22, - ACTIONS(782), 1, + [34181] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1244), 1, - anon_sym_STAR, - STATE(1045), 1, + STATE(972), 1, sym_primary_expression, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1791), 1, sym_expression, - STATE(2411), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57579,7 +57789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57596,13 +57806,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34247] = 22, + [34279] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -57613,29 +57823,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1868), 1, + STATE(2090), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -57647,7 +57857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57655,7 +57865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57672,58 +57882,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34345] = 22, - ACTIONS(782), 1, + [34377] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1827), 1, sym_expression, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57731,7 +57941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57748,58 +57958,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34443] = 22, - ACTIONS(689), 1, + [34475] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, + sym_string, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, + sym_list_splat_pattern, + STATE(1967), 1, + sym_expression, + STATE(2795), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(65), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1077), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [34573] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, ACTIONS(1128), 1, + sym_identifier, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1138), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1244), 1, + anon_sym_STAR, + STATE(1010), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1851), 1, + STATE(1801), 1, sym_expression, - STATE(2501), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57807,7 +58093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57824,58 +58110,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34541] = 22, - ACTIONS(782), 1, + [34671] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1772), 1, + STATE(1877), 1, sym_expression, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57883,7 +58169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57900,13 +58186,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34639] = 22, + [34769] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -57917,29 +58203,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1669), 1, + STATE(1961), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -57951,7 +58237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57959,7 +58245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57976,58 +58262,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34737] = 22, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [34867] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1007), 1, sym_string, - STATE(1026), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(2118), 1, sym_expression, - STATE(2534), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1090), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58035,7 +58321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58052,58 +58338,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34835] = 22, - ACTIONS(782), 1, + [34965] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1818), 1, + STATE(1929), 1, sym_expression, - STATE(2411), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58111,7 +58397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58128,61 +58414,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34933] = 23, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [35063] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(992), 1, + STATE(1007), 1, + sym_string, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(1741), 1, + sym_expression, + STATE(2677), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(290), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1282), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [35161] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1482), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1486), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1488), 1, + ACTIONS(404), 1, anon_sym_await, - STATE(989), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(990), 1, + STATE(969), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1838), 1, + STATE(1922), 1, sym_expression, - STATE(2501), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1504), 2, - sym_attribute, - sym_subscript, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1484), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58190,9 +58549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 14, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -58205,58 +58566,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35033] = 22, - ACTIONS(689), 1, + [35259] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, ACTIONS(1128), 1, + sym_identifier, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1138), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1244), 1, + anon_sym_STAR, + STATE(1010), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1834), 1, sym_expression, - STATE(2501), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58264,7 +58625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58281,58 +58642,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35131] = 22, - ACTIONS(804), 1, + [35357] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1304), 1, - anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1495), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1925), 1, sym_expression, - STATE(2350), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58340,7 +58701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58357,58 +58718,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35229] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [35455] = 22, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(978), 1, + STATE(987), 1, sym_string, - STATE(1118), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1884), 1, + STATE(1786), 1, sym_expression, - STATE(2517), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58416,7 +58777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58433,13 +58794,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35327] = 22, + [35553] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -58450,29 +58811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1931), 1, + STATE(1757), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -58484,7 +58845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58492,7 +58853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58509,58 +58870,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35425] = 22, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [35651] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(989), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(990), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1723), 1, + STATE(2110), 1, sym_expression, - STATE(2501), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1126), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58585,58 +58946,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35523] = 22, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [35749] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(840), 1, - anon_sym_lambda, - ACTIONS(846), 1, - anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, + STATE(1007), 1, sym_string, - STATE(1239), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1937), 1, sym_expression, - STATE(2349), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(832), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58644,7 +59005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58661,58 +59022,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35621] = 22, - ACTIONS(689), 1, - anon_sym_LPAREN, - ACTIONS(697), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [35847] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1120), 1, - sym_identifier, - ACTIONS(1128), 1, - anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(322), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, - sym_primary_expression, - STATE(1272), 1, - sym_list_splat_pattern, - STATE(1699), 1, - sym_expression, - STATE(2501), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, + sym_string, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(2111), 1, + sym_expression, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1126), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58737,58 +59098,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35719] = 22, - ACTIONS(65), 1, + [35945] = 9, + ACTIONS(1496), 1, + anon_sym_else, + ACTIONS(1498), 1, + anon_sym_except, + ACTIONS(1500), 1, + anon_sym_finally, + STATE(694), 1, + sym_else_clause, + STATE(739), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(616), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1462), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1460), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(69), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(381), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + sym_true, + sym_false, + sym_none, + [36017] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, + anon_sym_await, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1006), 1, sym_primary_expression, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1739), 1, sym_expression, - STATE(2517), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58796,7 +59220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58813,58 +59237,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35817] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [36115] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, + anon_sym_STAR, + STATE(1083), 1, + sym_primary_expression, + STATE(1152), 1, + sym_string, + STATE(1484), 1, + sym_list_splat_pattern, + STATE(1778), 1, + sym_expression, + STATE(2626), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(810), 2, + sym_ellipsis, + sym_float, + ACTIONS(806), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(794), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1477), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [36213] = 22, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, + anon_sym_type, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, + anon_sym_lambda, + ACTIONS(1028), 1, + anon_sym_await, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1083), 1, sym_primary_expression, - STATE(978), 1, + STATE(1152), 1, sym_string, - STATE(1118), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1890), 1, + STATE(1763), 1, sym_expression, - STATE(2517), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58872,7 +59372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58889,37 +59389,37 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35915] = 9, - ACTIONS(1494), 1, - anon_sym_else, + [36311] = 9, ACTIONS(1496), 1, - anon_sym_except, + anon_sym_else, ACTIONS(1498), 1, + anon_sym_except, + ACTIONS(1500), 1, anon_sym_finally, - STATE(718), 1, + STATE(702), 1, sym_else_clause, - STATE(790), 1, + STATE(830), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(613), 2, + STATE(616), 2, sym_except_clause, aux_sym_try_statement_repeat1, - ACTIONS(1490), 12, + ACTIONS(1502), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(1504), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -58952,37 +59452,37 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [35987] = 9, - ACTIONS(1494), 1, + [36383] = 9, + ACTIONS(1496), 1, anon_sym_else, - ACTIONS(1498), 1, - anon_sym_finally, ACTIONS(1500), 1, + anon_sym_finally, + ACTIONS(1506), 1, anon_sym_except_STAR, - STATE(718), 1, + STATE(702), 1, sym_else_clause, - STATE(790), 1, + STATE(830), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(611), 2, + STATE(617), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - ACTIONS(1490), 12, + ACTIONS(1502), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(1504), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -59015,13 +59515,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36059] = 22, + [36455] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -59032,29 +59532,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1751), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -59066,7 +59566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59074,7 +59574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59091,13 +59591,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36157] = 22, - ACTIONS(65), 1, - anon_sym_not, + [36553] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(381), 1, @@ -59106,31 +59606,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1897), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -59142,7 +59642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59150,7 +59650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59167,135 +59667,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36255] = 23, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [36651] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1304), 1, - anon_sym_STAR, - ACTIONS(1480), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1502), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1506), 1, - anon_sym_type, - STATE(1057), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1829), 1, + STATE(2027), 1, sym_expression, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1505), 2, - sym_attribute, - sym_subscript, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1504), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1452), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [36355] = 22, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(840), 1, - anon_sym_lambda, - ACTIONS(846), 1, - anon_sym_await, - ACTIONS(1274), 1, - anon_sym_STAR, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, - sym_string, - STATE(1239), 1, - sym_list_splat_pattern, - STATE(1697), 1, - sym_expression, - STATE(2349), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(772), 2, - sym_ellipsis, - sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1706), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59303,7 +59726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59320,58 +59743,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36453] = 22, - ACTIONS(782), 1, + [36749] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1721), 1, sym_expression, - STATE(2411), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59379,7 +59802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59396,37 +59819,37 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36551] = 9, - ACTIONS(1512), 1, + [36847] = 9, + ACTIONS(1496), 1, anon_sym_else, - ACTIONS(1514), 1, - anon_sym_except, - ACTIONS(1516), 1, + ACTIONS(1500), 1, anon_sym_finally, - STATE(708), 1, + ACTIONS(1506), 1, + anon_sym_except_STAR, + STATE(694), 1, sym_else_clause, - STATE(817), 1, + STATE(739), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1510), 12, - sym__dedent, + STATE(617), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1462), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1508), 32, + ACTIONS(1460), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -59459,58 +59882,58 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [36623] = 22, - ACTIONS(299), 1, + [36919] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1916), 1, + STATE(1740), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59518,7 +59941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59535,58 +59958,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36721] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [37017] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(1118), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1834), 1, + STATE(2014), 1, sym_expression, - STATE(2517), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59594,7 +60017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59611,58 +60034,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36819] = 22, - ACTIONS(804), 1, + [37115] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1236), 1, - sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(979), 1, sym_primary_expression, - STATE(1495), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1790), 1, sym_expression, - STATE(2350), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59670,7 +60093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59687,58 +60110,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36917] = 22, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, + [37213] = 22, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(1007), 1, sym_string, - STATE(1300), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1746), 1, sym_expression, - STATE(2481), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59746,7 +60169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59763,58 +60186,134 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37015] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [37311] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1944), 1, + STATE(1682), 1, sym_expression, - STATE(2520), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, + STATE(1685), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1077), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [37409] = 22, + ACTIONS(728), 1, + anon_sym_LPAREN, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(830), 1, + anon_sym_not, + ACTIONS(832), 1, + anon_sym_lambda, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, + anon_sym_STAR, + STATE(1031), 1, + sym_primary_expression, + STATE(1034), 1, + sym_string, + STATE(1401), 1, + sym_list_splat_pattern, + STATE(1822), 1, + sym_expression, + STATE(2743), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(744), 2, + sym_ellipsis, + sym_float, + ACTIONS(740), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1118), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59822,7 +60321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59839,58 +60338,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37113] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [37507] = 22, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(393), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(976), 1, + STATE(979), 1, sym_primary_expression, - STATE(978), 1, + STATE(987), 1, sym_string, - STATE(1118), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1887), 1, sym_expression, - STATE(2517), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59898,7 +60397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59915,13 +60414,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37211] = 22, + [37605] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -59932,29 +60431,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1968), 1, + STATE(1748), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -59966,7 +60465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59974,7 +60473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59991,61 +60490,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37309] = 23, - ACTIONS(738), 1, + [37703] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1026), 1, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1308), 1, - anon_sym_STAR, - ACTIONS(1518), 1, - sym_identifier, - ACTIONS(1522), 1, - anon_sym_type, - ACTIONS(1524), 1, + ACTIONS(1084), 1, anon_sym_await, - STATE(1044), 1, - sym_string, - STATE(1187), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(1006), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1906), 1, + STATE(1735), 1, sym_expression, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(1406), 2, - sym_attribute, - sym_subscript, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1520), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60053,9 +60549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 14, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60068,184 +60566,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37409] = 9, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1516), 1, - anon_sym_finally, - ACTIONS(1526), 1, - anon_sym_except_STAR, - STATE(708), 1, - sym_else_clause, - STATE(817), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1510), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1508), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37481] = 9, - ACTIONS(1494), 1, - anon_sym_else, - ACTIONS(1498), 1, - anon_sym_finally, - ACTIONS(1500), 1, - anon_sym_except_STAR, - STATE(709), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(611), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1510), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1508), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37553] = 22, - ACTIONS(738), 1, + [37801] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1879), 1, + STATE(1719), 1, sym_expression, - STATE(2481), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60253,7 +60625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60270,76 +60642,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37651] = 9, - ACTIONS(1494), 1, - anon_sym_else, - ACTIONS(1496), 1, - anon_sym_except, - ACTIONS(1498), 1, - anon_sym_finally, - STATE(709), 1, - sym_else_clause, - STATE(741), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1510), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1508), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [37723] = 22, + [37899] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -60350,29 +60659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1961), 1, + STATE(2120), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -60384,7 +60693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60392,7 +60701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60409,13 +60718,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37821] = 22, + [37997] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -60426,29 +60735,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1941), 1, + STATE(2101), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -60460,7 +60769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60468,7 +60777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60485,13 +60794,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37919] = 22, + [38095] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -60502,29 +60811,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1949), 1, + STATE(1919), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -60536,7 +60845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60544,7 +60853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60561,13 +60870,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38017] = 22, + [38193] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -60578,29 +60887,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1860), 1, + STATE(2070), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -60612,7 +60921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60620,7 +60929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60637,58 +60946,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38115] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [38291] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, + anon_sym_type, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, + anon_sym_await, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1945), 1, + STATE(1720), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60696,7 +61005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60713,58 +61022,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38213] = 22, - ACTIONS(689), 1, + [38389] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, - anon_sym_not, - ACTIONS(994), 1, - anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + ACTIONS(1228), 1, + anon_sym_STAR, + STATE(979), 1, sym_primary_expression, - STATE(1272), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1789), 1, sym_expression, - STATE(2501), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60772,7 +61081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60789,90 +61098,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38311] = 23, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1308), 1, - anon_sym_STAR, - ACTIONS(1524), 1, - anon_sym_await, - ACTIONS(1528), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_type, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, - sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1906), 1, - sym_expression, - STATE(2481), 1, - sym__named_expression_lhs, + [38487] = 9, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1468), 1, + anon_sym_finally, + ACTIONS(1470), 1, + anon_sym_except, + STATE(701), 1, + sym_else_clause, + STATE(806), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, - sym_ellipsis, - sym_float, - STATE(1506), 2, - sym_attribute, - sym_subscript, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1502), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1530), 4, + sym_ellipsis, + sym_float, + ACTIONS(1504), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1680), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1415), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38411] = 22, - ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(318), 1, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [38559] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -60883,29 +61178,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1901), 1, + STATE(1928), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -60917,7 +61212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60925,7 +61220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60942,58 +61237,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38509] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [38657] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(404), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1272), 1, + sym_identifier, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(976), 1, + STATE(1006), 1, sym_primary_expression, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1621), 1, + STATE(2000), 1, sym_expression, - STATE(2517), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(389), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61001,7 +61296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61018,58 +61313,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38607] = 22, - ACTIONS(760), 1, + [38755] = 9, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1466), 1, + anon_sym_except_STAR, + ACTIONS(1468), 1, + anon_sym_finally, + STATE(701), 1, + sym_else_clause, + STATE(806), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(602), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1502), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(768), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(774), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1504), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - ACTIONS(838), 1, + anon_sym_class, anon_sym_not, - ACTIONS(840), 1, anon_sym_lambda, - ACTIONS(846), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1274), 1, + sym_true, + sym_false, + sym_none, + [38827] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, + STATE(1007), 1, sym_string, - STATE(1239), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1750), 1, sym_expression, - STATE(2349), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(832), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61077,7 +61435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61094,13 +61452,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38705] = 22, + [38925] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -61111,29 +61469,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1934), 1, + STATE(2034), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -61145,7 +61503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61153,7 +61511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61170,58 +61528,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38803] = 22, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, + [39023] = 22, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1008), 1, - anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1062), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(2098), 1, sym_expression, - STATE(2350), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1002), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61229,7 +61587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61246,58 +61604,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38901] = 22, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [39121] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1703), 1, + STATE(1995), 1, sym_expression, - STATE(2350), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61305,7 +61663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61322,58 +61680,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38999] = 22, - ACTIONS(804), 1, + [39219] = 23, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1288), 1, + anon_sym_STAR, + ACTIONS(1478), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1508), 1, sym_identifier, - ACTIONS(1304), 1, - anon_sym_STAR, - STATE(1057), 1, + ACTIONS(1512), 1, + anon_sym_type, + STATE(1152), 1, sym_string, - STATE(1062), 1, + STATE(1278), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1702), 1, + STATE(1918), 1, sym_expression, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(1403), 2, + sym_attribute, + sym_subscript, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1510), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61381,11 +61742,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -61398,58 +61757,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39097] = 22, - ACTIONS(299), 1, + [39319] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1935), 1, + STATE(1774), 1, sym_expression, - STATE(2520), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61457,7 +61816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61474,13 +61833,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39195] = 22, + [39417] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -61491,29 +61850,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(2123), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -61525,7 +61884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61533,7 +61892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61550,58 +61909,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39293] = 22, - ACTIONS(804), 1, + [39515] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1304), 1, - anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1495), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1793), 1, sym_expression, - STATE(2350), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61609,7 +61968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61626,13 +61985,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39391] = 22, + [39613] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -61643,29 +62002,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(2113), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -61677,7 +62036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61685,7 +62044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61702,58 +62061,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39489] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + [39711] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(406), 1, + ACTIONS(381), 1, sym_identifier, - ACTIONS(408), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(968), 1, sym_string, - STATE(1048), 1, + STATE(969), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1839), 1, sym_expression, - STATE(2520), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(389), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61761,7 +62120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61778,58 +62137,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39587] = 22, - ACTIONS(804), 1, + [39809] = 22, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1769), 1, sym_expression, - STATE(2350), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61837,7 +62196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61854,58 +62213,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39685] = 22, - ACTIONS(782), 1, + [39907] = 22, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(1022), 1, + anon_sym_type, + ACTIONS(1024), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(1160), 1, - sym_identifier, - ACTIONS(1166), 1, - anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(1244), 1, + ACTIONS(1254), 1, + sym_identifier, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1152), 1, sym_string, - STATE(1400), 1, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1746), 1, + STATE(1768), 1, sym_expression, - STATE(2411), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1018), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61913,7 +62272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61930,58 +62289,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39783] = 22, - ACTIONS(299), 1, + [40005] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1930), 1, + STATE(1766), 1, sym_expression, - STATE(2520), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61989,7 +62348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62006,58 +62365,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39881] = 22, - ACTIONS(804), 1, + [40103] = 22, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(812), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1006), 1, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(1012), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1057), 1, - sym_string, - STATE(1062), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1759), 1, sym_expression, - STATE(2350), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(1074), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62065,7 +62424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62082,58 +62441,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39979] = 22, - ACTIONS(299), 1, + [40201] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1659), 1, + STATE(1963), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62141,7 +62500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62158,58 +62517,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40077] = 22, - ACTIONS(689), 1, + [40299] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1120), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1128), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1130), 1, + ACTIONS(1108), 1, anon_sym_await, - STATE(989), 1, - sym_string, - STATE(990), 1, + STATE(972), 1, sym_primary_expression, - STATE(1272), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1795), 1, sym_expression, - STATE(2501), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1126), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62217,7 +62576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62234,58 +62593,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40175] = 22, - ACTIONS(760), 1, + [40397] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(824), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(836), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(838), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(846), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(995), 1, + STATE(979), 1, sym_primary_expression, - STATE(998), 1, + STATE(987), 1, sym_string, - STATE(1239), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1841), 1, sym_expression, - STATE(2349), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62293,7 +62652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62310,58 +62669,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40273] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [40495] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(696), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1324), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1691), 1, + STATE(1942), 1, sym_expression, - STATE(2520), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62369,7 +62728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62386,58 +62745,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40371] = 22, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, + [40593] = 22, + ACTIONS(299), 1, anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, + STATE(1007), 1, sym_string, - STATE(1300), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(2080), 1, sym_expression, - STATE(2481), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62445,7 +62804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62462,58 +62821,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40469] = 22, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [40691] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, + ACTIONS(314), 1, anon_sym_lambda, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, - anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(322), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(406), 1, + sym_identifier, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1007), 1, sym_string, - STATE(1026), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1799), 1, + STATE(2100), 1, sym_expression, - STATE(2534), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1090), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62521,7 +62880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62538,58 +62897,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40567] = 22, - ACTIONS(782), 1, + [40789] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(862), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(864), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1160), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1166), 1, + ACTIONS(1134), 1, anon_sym_type, - ACTIONS(1170), 1, + ACTIONS(1138), 1, anon_sym_await, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1045), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1805), 1, sym_expression, - STATE(2411), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(780), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1164), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1753), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62597,7 +62956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62614,13 +62973,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40665] = 22, + [40887] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -62631,29 +62990,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1870), 1, + STATE(2051), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -62665,7 +63024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62673,7 +63032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62690,58 +63049,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40763] = 22, - ACTIONS(714), 1, + [40985] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1086), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(979), 1, sym_primary_expression, - STATE(1420), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1782), 1, sym_expression, - STATE(2534), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62749,7 +63108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62766,58 +63125,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40861] = 22, - ACTIONS(760), 1, + [41083] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(846), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1031), 1, sym_primary_expression, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1239), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1847), 1, sym_expression, - STATE(2349), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62825,7 +63184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62842,58 +63201,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40959] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [41181] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(696), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1324), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1925), 1, + STATE(1773), 1, sym_expression, - STATE(2520), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62901,7 +63260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62918,58 +63277,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41057] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [41279] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(696), 1, + anon_sym_LBRACE, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + ACTIONS(984), 1, + anon_sym_not, + ACTIONS(986), 1, + anon_sym_lambda, + ACTIONS(1098), 1, + sym_identifier, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1324), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1924), 1, + STATE(1772), 1, sym_expression, - STATE(2520), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1104), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62977,7 +63336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62994,61 +63353,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41155] = 23, - ACTIONS(689), 1, + [41377] = 22, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(697), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(984), 1, - anon_sym_STAR, - ACTIONS(992), 1, + ACTIONS(886), 1, anon_sym_not, - ACTIONS(994), 1, + ACTIONS(888), 1, anon_sym_lambda, - ACTIONS(1488), 1, - anon_sym_await, - ACTIONS(1534), 1, + ACTIONS(1128), 1, sym_identifier, - ACTIONS(1538), 1, + ACTIONS(1134), 1, anon_sym_type, - STATE(989), 1, - sym_string, - STATE(1270), 1, + ACTIONS(1138), 1, + anon_sym_await, + ACTIONS(1244), 1, + anon_sym_STAR, + STATE(1010), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1011), 1, + sym_string, + STATE(1310), 1, sym_list_splat_pattern, - STATE(1838), 1, + STATE(1800), 1, sym_expression, - STATE(2501), 1, + STATE(2688), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(1194), 2, - sym_attribute, - sym_subscript, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(687), 4, + ACTIONS(772), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1536), 4, + ACTIONS(1132), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1727), 7, + STATE(1811), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63056,9 +63412,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1282), 14, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -63071,58 +63429,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41255] = 22, - ACTIONS(738), 1, + [41475] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1024), 1, + ACTIONS(840), 1, + sym_identifier, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(856), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(858), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1264), 1, - sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(979), 1, sym_primary_expression, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1686), 1, + STATE(1784), 1, sym_expression, - STATE(2481), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63130,7 +63488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63147,58 +63505,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41353] = 22, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [41573] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1086), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(404), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(968), 1, sym_string, - STATE(1026), 1, + STATE(969), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1687), 1, sym_expression, - STATE(2534), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63206,7 +63564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63223,58 +63581,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41451] = 22, - ACTIONS(714), 1, + [41671] = 22, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(884), 1, - anon_sym_not, - ACTIONS(886), 1, - anon_sym_lambda, - ACTIONS(1086), 1, + ACTIONS(840), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(852), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(856), 1, + anon_sym_not, + ACTIONS(858), 1, + anon_sym_lambda, + ACTIONS(862), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(979), 1, sym_primary_expression, - STATE(1420), 1, + STATE(987), 1, + sym_string, + STATE(1214), 1, sym_list_splat_pattern, - STATE(1748), 1, + STATE(1783), 1, sym_expression, - STATE(2534), 1, + STATE(2669), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(704), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(848), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1764), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63282,7 +63640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63299,13 +63657,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41549] = 22, - ACTIONS(65), 1, - anon_sym_not, + [41769] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, ACTIONS(381), 1, @@ -63314,31 +63672,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, ACTIONS(404), 1, anon_sym_await, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(1118), 1, + STATE(969), 1, + sym_primary_expression, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1629), 1, + STATE(2047), 1, sym_expression, - STATE(2517), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(77), 4, sym_integer, @@ -63350,7 +63708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63358,7 +63716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63375,58 +63733,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41647] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, + [41867] = 22, + ACTIONS(299), 1, + anon_sym_type, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(314), 1, + anon_sym_lambda, + ACTIONS(322), 1, + anon_sym_await, + ACTIONS(324), 1, sym_string_start, - ACTIONS(381), 1, + ACTIONS(406), 1, sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1296), 1, + ACTIONS(416), 1, + anon_sym_not, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(1118), 1, + STATE(1008), 1, + sym_primary_expression, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1965), 1, + STATE(1749), 1, sym_expression, - STATE(2517), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, + ACTIONS(290), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1618), 7, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63434,7 +63792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63451,58 +63809,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41745] = 22, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [41965] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(884), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1086), 1, - sym_identifier, - ACTIONS(1092), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, + sym_identifier, + ACTIONS(393), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(404), 1, anon_sym_await, - ACTIONS(1256), 1, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(968), 1, sym_string, - STATE(1026), 1, + STATE(969), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1676), 1, sym_expression, - STATE(2534), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63510,7 +63868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63527,58 +63885,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41843] = 22, - ACTIONS(299), 1, + [42063] = 22, + ACTIONS(796), 1, + anon_sym_LPAREN, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1022), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1024), 1, + anon_sym_not, + ACTIONS(1026), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1028), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1254), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1083), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1152), 1, + sym_string, + STATE(1484), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1762), 1, sym_expression, - STATE(2520), 1, + STATE(2626), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(794), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1018), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1781), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63586,7 +63944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63603,58 +63961,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41941] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, + [42161] = 23, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1080), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1082), 1, + anon_sym_lambda, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(1494), 1, + anon_sym_await, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(1518), 1, + anon_sym_type, + STATE(1009), 1, sym_string, - STATE(1048), 1, + STATE(1190), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1932), 1, + STATE(1941), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1294), 2, + sym_attribute, + sym_subscript, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1516), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63662,11 +64023,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -63679,58 +64038,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42039] = 22, - ACTIONS(714), 1, + [42261] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(724), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(734), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(884), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(886), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1086), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1092), 1, + ACTIONS(1106), 1, anon_sym_type, - ACTIONS(1094), 1, + ACTIONS(1108), 1, anon_sym_await, - ACTIONS(1256), 1, - anon_sym_STAR, - STATE(1024), 1, - sym_string, - STATE(1026), 1, + STATE(972), 1, sym_primary_expression, - STATE(1420), 1, + STATE(977), 1, + sym_string, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1767), 1, + STATE(1771), 1, sym_expression, - STATE(2534), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(712), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1090), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1734), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63738,7 +64097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1298), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63755,58 +64114,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42137] = 22, - ACTIONS(299), 1, + [42359] = 22, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1078), 1, anon_sym_type, - ACTIONS(312), 1, + ACTIONS(1080), 1, + anon_sym_not, + ACTIONS(1082), 1, anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, + ACTIONS(1084), 1, anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, + ACTIONS(1272), 1, sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1009), 1, + sym_string, + STATE(1427), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1978), 1, sym_expression, - STATE(2520), 1, + STATE(2734), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(290), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 4, + ACTIONS(750), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1677), 7, + ACTIONS(1074), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63814,7 +64173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63831,13 +64190,13 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42235] = 22, + [42457] = 22, ACTIONS(299), 1, anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_lambda, ACTIONS(322), 1, anon_sym_await, ACTIONS(324), 1, @@ -63848,29 +64207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(414), 1, + ACTIONS(416), 1, anon_sym_not, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1048), 1, + STATE(1008), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1940), 1, + STATE(2077), 1, sym_expression, - STATE(2520), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(290), 4, anon_sym_print, @@ -63882,7 +64241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1677), 7, + STATE(1728), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63890,7 +64249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63907,58 +64266,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42333] = 22, - ACTIONS(738), 1, + [42555] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1300), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1682), 1, + STATE(1770), 1, sym_expression, - STATE(2481), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -63966,7 +64325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -63983,58 +64342,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42431] = 22, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [42653] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1006), 1, - anon_sym_type, - ACTIONS(1008), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1010), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1012), 1, - anon_sym_await, - ACTIONS(1236), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(381), 1, sym_identifier, - ACTIONS(1304), 1, + ACTIONS(393), 1, + anon_sym_type, + ACTIONS(404), 1, + anon_sym_await, + ACTIONS(652), 1, + anon_sym_LPAREN, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(968), 1, sym_string, - STATE(1062), 1, + STATE(969), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, - STATE(1866), 1, + STATE(1690), 1, sym_expression, - STATE(2350), 1, + STATE(2795), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(802), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1002), 4, + ACTIONS(389), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1725), 7, + STATE(1685), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64042,7 +64401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64059,58 +64418,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42529] = 22, - ACTIONS(738), 1, + [42751] = 23, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1030), 1, + ACTIONS(1486), 1, anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1520), 1, sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1524), 1, + anon_sym_type, + STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1300), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(2001), 1, sym_expression, - STATE(2481), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(1506), 2, + sym_attribute, + sym_subscript, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1522), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64118,11 +64480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1258), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -64135,58 +64495,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42627] = 22, - ACTIONS(738), 1, + [42851] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1851), 1, sym_expression, - STATE(2481), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64194,7 +64554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64211,58 +64571,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42725] = 22, - ACTIONS(760), 1, + [42949] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(846), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1031), 1, sym_primary_expression, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1239), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1850), 1, sym_expression, - STATE(2349), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64270,7 +64630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64287,58 +64647,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42823] = 22, - ACTIONS(760), 1, + [43047] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(768), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(840), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(846), 1, + ACTIONS(1114), 1, + sym_identifier, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, anon_sym_await, - ACTIONS(1274), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1031), 1, sym_primary_expression, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1239), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1844), 1, sym_expression, - STATE(2349), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(832), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1706), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64346,7 +64706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1193), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64363,134 +64723,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42921] = 22, - ACTIONS(738), 1, + [43145] = 22, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(830), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(832), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1114), 1, sym_identifier, - ACTIONS(1308), 1, + ACTIONS(1120), 1, + anon_sym_type, + ACTIONS(1122), 1, + anon_sym_await, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1004), 1, + STATE(1031), 1, sym_primary_expression, - STATE(1044), 1, + STATE(1034), 1, sym_string, - STATE(1300), 1, + STATE(1401), 1, sym_list_splat_pattern, - STATE(1681), 1, + STATE(1837), 1, sym_expression, - STATE(2481), 1, + STATE(2743), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(726), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1680), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1415), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43019] = 22, - ACTIONS(299), 1, - anon_sym_type, - ACTIONS(312), 1, - anon_sym_lambda, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(322), 1, - anon_sym_await, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(406), 1, - sym_identifier, - ACTIONS(408), 1, - anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(414), 1, - anon_sym_not, - ACTIONS(1370), 1, - anon_sym_STAR, - STATE(1032), 1, - sym_string, - STATE(1048), 1, - sym_primary_expression, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1938), 1, - sym_expression, - STATE(2520), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(290), 4, + ACTIONS(1118), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1677), 7, + STATE(1826), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64498,7 +64782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64515,58 +64799,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43117] = 22, - ACTIONS(738), 1, + [43243] = 22, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(746), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(756), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, + ACTIONS(976), 1, + anon_sym_STAR, + ACTIONS(984), 1, anon_sym_not, - ACTIONS(1028), 1, + ACTIONS(986), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + ACTIONS(1098), 1, sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, + ACTIONS(1106), 1, + anon_sym_type, + ACTIONS(1108), 1, + anon_sym_await, + STATE(972), 1, sym_primary_expression, - STATE(1044), 1, + STATE(977), 1, sym_string, - STATE(1300), 1, + STATE(1218), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1767), 1, sym_expression, - STATE(2481), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, + ACTIONS(682), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1020), 4, + ACTIONS(1104), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1680), 7, + STATE(1794), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -64574,7 +64858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1415), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -64591,37 +64875,92 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43215] = 9, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1514), 1, - anon_sym_except, - ACTIONS(1516), 1, - anon_sym_finally, - STATE(711), 1, - sym_else_clause, - STATE(769), 1, - sym_finally_clause, + [43341] = 10, + ACTIONS(1528), 1, + anon_sym_COMMA, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(1535), 1, + anon_sym_COLON, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(1540), 1, + anon_sym_LBRACK, + STATE(2109), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1490), 12, + ACTIONS(1542), 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(1531), 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(1526), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43414] = 5, + ACTIONS(1548), 1, + anon_sym_except_STAR, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(602), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1546), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(1544), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64633,11 +64972,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -64654,37 +64995,93 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43287] = 9, - ACTIONS(1512), 1, + [43476] = 7, + ACTIONS(1528), 1, + anon_sym_COMMA, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1538), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1542), 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(1531), 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(1526), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [43542] = 8, + ACTIONS(1464), 1, anon_sym_else, - ACTIONS(1516), 1, - anon_sym_finally, - ACTIONS(1526), 1, - anon_sym_except_STAR, - STATE(711), 1, + ACTIONS(1555), 1, + anon_sym_elif, + STATE(629), 1, + aux_sym_if_statement_repeat1, + STATE(699), 1, + sym_elif_clause, + STATE(784), 1, sym_else_clause, - STATE(769), 1, - sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(624), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1490), 12, + ACTIONS(1553), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64717,610 +65114,174 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [43359] = 22, - ACTIONS(738), 1, + [43610] = 8, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1555), 1, + anon_sym_elif, + STATE(609), 1, + aux_sym_if_statement_repeat1, + STATE(699), 1, + sym_elif_clause, + STATE(785), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1559), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(746), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(752), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1557), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - ACTIONS(1026), 1, + anon_sym_class, anon_sym_not, - ACTIONS(1028), 1, anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, - sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1656), 1, - sym_expression, - STATE(2481), 1, - sym__named_expression_lhs, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [43678] = 8, + ACTIONS(1464), 1, + anon_sym_else, + ACTIONS(1555), 1, + anon_sym_elif, + STATE(604), 1, + aux_sym_if_statement_repeat1, + STATE(699), 1, + sym_elif_clause, + STATE(754), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, - sym_ellipsis, - sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(1563), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, + sym_ellipsis, + sym_float, + ACTIONS(1561), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1680), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1415), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43457] = 22, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, anon_sym_type, - ACTIONS(838), 1, + anon_sym_class, anon_sym_not, - ACTIONS(840), 1, anon_sym_lambda, - ACTIONS(846), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(1274), 1, - anon_sym_STAR, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, - sym_string, - STATE(1239), 1, - sym_list_splat_pattern, - STATE(1708), 1, - sym_expression, - STATE(2349), 1, - sym__named_expression_lhs, + sym_true, + sym_false, + sym_none, + [43746] = 8, + ACTIONS(1496), 1, + anon_sym_else, + ACTIONS(1565), 1, + anon_sym_elif, + STATE(621), 1, + aux_sym_if_statement_repeat1, + STATE(705), 1, + sym_elif_clause, + STATE(787), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, - sym_ellipsis, - sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(1553), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(832), 4, + sym_ellipsis, + sym_float, + ACTIONS(1551), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_exec, - STATE(1706), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1193), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43555] = 22, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1024), 1, - anon_sym_type, - ACTIONS(1026), 1, - anon_sym_not, - ACTIONS(1028), 1, - anon_sym_lambda, - ACTIONS(1030), 1, - anon_sym_await, - ACTIONS(1264), 1, - sym_identifier, - ACTIONS(1308), 1, - anon_sym_STAR, - STATE(1004), 1, - sym_primary_expression, - STATE(1044), 1, - sym_string, - STATE(1300), 1, - sym_list_splat_pattern, - STATE(1837), 1, - sym_expression, - STATE(2481), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 2, - sym_ellipsis, - sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(736), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1020), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1680), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1415), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43653] = 22, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(824), 1, - sym_identifier, - ACTIONS(836), 1, - anon_sym_type, - ACTIONS(838), 1, - anon_sym_not, - ACTIONS(840), 1, - anon_sym_lambda, - ACTIONS(846), 1, - anon_sym_await, - ACTIONS(1274), 1, - anon_sym_STAR, - STATE(995), 1, - sym_primary_expression, - STATE(998), 1, - sym_string, - STATE(1239), 1, - sym_list_splat_pattern, - STATE(1700), 1, - sym_expression, - STATE(2349), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(772), 2, - sym_ellipsis, - sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(758), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(832), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1706), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1193), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43751] = 22, - ACTIONS(65), 1, - anon_sym_not, - ACTIONS(69), 1, - anon_sym_lambda, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(381), 1, - sym_identifier, - ACTIONS(393), 1, - anon_sym_type, - ACTIONS(404), 1, - anon_sym_await, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(976), 1, - sym_primary_expression, - STATE(978), 1, - sym_string, - STATE(1118), 1, - sym_list_splat_pattern, - STATE(1752), 1, - sym_expression, - STATE(2517), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(73), 2, - sym_ellipsis, - sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(389), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1618), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1055), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [43849] = 10, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(1549), 1, - anon_sym_COLON, - ACTIONS(1552), 1, - anon_sym_EQ, - ACTIONS(1554), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1556), 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(1545), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1540), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [43922] = 5, - ACTIONS(1562), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(611), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1558), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1560), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [43984] = 7, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1552), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1556), 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(1545), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1540), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44050] = 5, - ACTIONS(1569), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(613), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1565), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1567), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, anon_sym_type, anon_sym_class, @@ -65333,34 +65294,34 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44112] = 8, - ACTIONS(1494), 1, + [43814] = 8, + ACTIONS(1496), 1, anon_sym_else, - ACTIONS(1576), 1, + ACTIONS(1565), 1, anon_sym_elif, - STATE(616), 1, + STATE(610), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(705), 1, sym_elif_clause, - STATE(746), 1, + STATE(792), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1572), 12, + ACTIONS(1559), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1574), 32, + ACTIONS(1557), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65393,34 +65354,34 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44180] = 8, - ACTIONS(1494), 1, + [43882] = 8, + ACTIONS(1464), 1, anon_sym_else, - ACTIONS(1576), 1, + ACTIONS(1555), 1, anon_sym_elif, STATE(629), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(699), 1, sym_elif_clause, - STATE(834), 1, + STATE(826), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1578), 12, + ACTIONS(1569), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1580), 32, + ACTIONS(1567), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65453,34 +65414,34 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44248] = 8, - ACTIONS(1494), 1, + [43950] = 8, + ACTIONS(1496), 1, anon_sym_else, - ACTIONS(1576), 1, + ACTIONS(1565), 1, anon_sym_elif, - STATE(629), 1, + STATE(621), 1, aux_sym_if_statement_repeat1, - STATE(710), 1, + STATE(705), 1, sym_elif_clause, - STATE(831), 1, + STATE(791), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1582), 12, + ACTIONS(1569), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1584), 32, + ACTIONS(1567), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65513,34 +65474,29 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44316] = 8, - ACTIONS(1494), 1, - anon_sym_else, - ACTIONS(1576), 1, - anon_sym_elif, - STATE(615), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, - STATE(761), 1, - sym_else_clause, + [44018] = 5, + ACTIONS(1575), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1586), 12, + STATE(611), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1573), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1588), 32, + ACTIONS(1571), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65552,11 +65508,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65573,19 +65531,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44384] = 8, + [44080] = 7, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, - ACTIONS(294), 1, - anon_sym_EQ, - ACTIONS(326), 1, - anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(314), 13, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65604,12 +65561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -65633,18 +65590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44452] = 7, + [44146] = 8, ACTIONS(284), 1, anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(294), 1, + anon_sym_EQ, + ACTIONS(326), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(314), 13, + ACTIONS(316), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -65663,12 +65621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -65692,93 +65650,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44518] = 7, - ACTIONS(284), 1, - anon_sym_COMMA, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [44214] = 8, + ACTIONS(1496), 1, + anon_sym_else, + ACTIONS(1565), 1, + anon_sym_elif, + STATE(607), 1, + aux_sym_if_statement_repeat1, + STATE(705), 1, + sym_elif_clause, + STATE(828), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(294), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(314), 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(279), 15, + ACTIONS(1563), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(277), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [44584] = 8, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1590), 1, - anon_sym_elif, - STATE(623), 1, - aux_sym_if_statement_repeat1, - STATE(721), 1, - sym_elif_clause, - STATE(826), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1586), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1588), 32, + ACTIONS(1561), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65811,149 +65710,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44652] = 8, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1590), 1, - anon_sym_elif, - STATE(625), 1, - aux_sym_if_statement_repeat1, - STATE(721), 1, - sym_elif_clause, - STATE(786), 1, - sym_else_clause, + [44282] = 7, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1572), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(294), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(316), 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(279), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1574), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + 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(277), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44720] = 8, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1590), 1, - anon_sym_elif, - STATE(632), 1, - aux_sym_if_statement_repeat1, - STATE(721), 1, - sym_elif_clause, - STATE(788), 1, - sym_else_clause, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [44348] = 5, + ACTIONS(1578), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1578), 12, - sym__dedent, + STATE(616), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1573), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1580), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44788] = 5, - ACTIONS(1592), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(624), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(1558), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1560), 34, + ACTIONS(1571), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65988,89 +65826,29 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44850] = 8, - ACTIONS(1512), 1, - anon_sym_else, - ACTIONS(1590), 1, - anon_sym_elif, - STATE(632), 1, - aux_sym_if_statement_repeat1, - STATE(721), 1, - sym_elif_clause, - STATE(752), 1, - sym_else_clause, + [44410] = 5, + ACTIONS(1581), 1, + anon_sym_except_STAR, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1582), 12, - sym__dedent, + STATE(617), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1546), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1584), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [44918] = 5, - ACTIONS(1595), 1, - anon_sym_except, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(626), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1565), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1567), 34, + ACTIONS(1544), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66105,42 +65883,38 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44980] = 7, - ACTIONS(1610), 1, - anon_sym_PIPE, + [44472] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1602), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1608), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 12, + ACTIONS(1586), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, 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(1598), 28, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1584), 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, @@ -66163,15 +65937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45045] = 6, - ACTIONS(1552), 1, - anon_sym_EQ, - ACTIONS(1614), 1, + [44529] = 6, + ACTIONS(1528), 1, anon_sym_COMMA, + ACTIONS(1538), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 14, + ACTIONS(1542), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -66186,23 +65960,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1617), 15, + ACTIONS(1531), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 17, + ACTIONS(1526), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66220,111 +65994,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45108] = 6, - ACTIONS(1623), 1, - anon_sym_elif, - STATE(629), 1, - aux_sym_if_statement_repeat1, - STATE(710), 1, - sym_elif_clause, + [44592] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 12, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1590), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, - anon_sym_LBRACE, - sym_float, - ACTIONS(1621), 33, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45171] = 6, - ACTIONS(1552), 1, + ACTIONS(1596), 3, anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1614), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1556), 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(1617), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1612), 17, + ACTIONS(1588), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -66334,16 +66037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45234] = 6, - ACTIONS(1552), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1556), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -66357,64 +66050,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1545), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1540), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [45297] = 6, - ACTIONS(1626), 1, + [44653] = 6, + ACTIONS(1602), 1, anon_sym_elif, - STATE(632), 1, + STATE(621), 1, aux_sym_if_statement_repeat1, - STATE(721), 1, + STATE(705), 1, sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1619), 12, - sym__dedent, + ACTIONS(1598), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1621), 33, + ACTIONS(1600), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66448,54 +66107,40 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45360] = 6, - ACTIONS(1636), 1, - anon_sym_EQ, + [44716] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1638), 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(1634), 15, + ACTIONS(671), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(679), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 17, + ACTIONS(666), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -66505,16 +66150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45423] = 6, - ACTIONS(1647), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1649), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -66528,31 +66163,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1645), 15, + [44777] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(671), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(679), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1640), 17, + ACTIONS(666), 29, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -66562,28 +66206,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45486] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [44838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 16, + ACTIONS(1607), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 32, + ACTIONS(1605), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66616,38 +66273,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45543] = 3, + [44895] = 7, + ACTIONS(1611), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 16, + ACTIONS(1590), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1609), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1596), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1593), 12, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1655), 32, + ACTIONS(1588), 28, 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, @@ -66670,15 +66331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45600] = 6, - ACTIONS(1642), 1, - anon_sym_COMMA, - ACTIONS(1647), 1, + [44960] = 6, + ACTIONS(1538), 1, anon_sym_EQ, + ACTIONS(1615), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 14, + ACTIONS(1542), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -66693,23 +66354,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1645), 15, + ACTIONS(1618), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 17, + ACTIONS(1613), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66727,15 +66388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45663] = 6, - ACTIONS(1631), 1, + [45023] = 6, + ACTIONS(1622), 1, anon_sym_COMMA, - ACTIONS(1636), 1, + ACTIONS(1629), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 14, + ACTIONS(1627), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -66750,23 +66411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1634), 15, + ACTIONS(1625), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 17, + ACTIONS(1620), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66784,40 +66445,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45726] = 5, + [45086] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1602), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1608), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 13, + ACTIONS(1633), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1631), 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, @@ -66840,28 +66499,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45787] = 3, + [45143] = 6, + ACTIONS(1635), 1, + anon_sym_elif, + STATE(629), 1, + aux_sym_if_statement_repeat1, + STATE(699), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 16, + ACTIONS(1598), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1600), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 32, + ACTIONS(1584), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -66894,36 +66610,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45844] = 3, + [45263] = 6, + ACTIONS(1629), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 16, + ACTIONS(1622), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1627), 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(1625), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 32, + ACTIONS(1620), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -66935,29 +66667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45901] = 6, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1552), 1, + [45326] = 6, + ACTIONS(1645), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 14, + ACTIONS(1640), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1647), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -66971,23 +66690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1545), 15, + ACTIONS(1643), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 17, + ACTIONS(1638), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67005,36 +66724,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45964] = 3, + [45389] = 6, + ACTIONS(1538), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 16, + ACTIONS(1528), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1542), 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(1531), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 32, + ACTIONS(1526), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -67046,6 +66781,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + [45452] = 6, + ACTIONS(1538), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1615), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1542), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -67059,28 +66804,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46021] = 3, + ACTIONS(1618), 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(1613), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 16, + ACTIONS(1651), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 32, + ACTIONS(1649), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67113,28 +66892,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46078] = 3, + [45572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 16, + ACTIONS(1655), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 32, + ACTIONS(1653), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -67167,40 +66946,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46135] = 5, + [45629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(679), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(709), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(676), 13, + ACTIONS(1651), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1649), 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, @@ -67223,40 +67000,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46196] = 5, + [45686] = 6, + ACTIONS(1640), 1, + anon_sym_COMMA, + ACTIONS(1645), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(679), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(709), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(676), 13, + ACTIONS(1647), 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(1643), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 17, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -67266,37 +67057,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46257] = 3, + [45749] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 12, + ACTIONS(1659), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1671), 35, + ACTIONS(1657), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67308,7 +67087,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67332,24 +67110,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46313] = 3, + [45805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 12, + ACTIONS(1661), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1671), 35, + ACTIONS(1663), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67367,7 +67146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67385,24 +67163,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46369] = 3, + [45861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 12, + ACTIONS(1665), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 35, + ACTIONS(1667), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67414,7 +67193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -67438,25 +67216,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46425] = 3, + [45917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 13, - sym__dedent, + ACTIONS(1669), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 34, + ACTIONS(1671), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67474,6 +67251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67491,24 +67269,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46481] = 3, + [45973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 12, + ACTIONS(1669), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1685), 35, + ACTIONS(1671), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67544,24 +67322,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46537] = 3, + [46029] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 12, + ACTIONS(1675), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 35, + ACTIONS(1673), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67597,24 +67375,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46593] = 3, + [46085] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 12, + ACTIONS(1679), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1693), 35, + ACTIONS(1677), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67650,24 +67428,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46649] = 3, + [46141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 12, - sym__dedent, + ACTIONS(1681), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1671), 35, + ACTIONS(1683), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67703,11 +67481,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46705] = 3, + [46197] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 13, + ACTIONS(1685), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67715,13 +67493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1697), 34, + ACTIONS(1687), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67756,24 +67534,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46761] = 3, + [46253] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1683), 12, + ACTIONS(1691), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1685), 35, + ACTIONS(1689), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67791,7 +67570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67809,25 +67587,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46817] = 3, + [46309] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 13, + ACTIONS(1695), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 34, + ACTIONS(1693), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67845,6 +67622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67862,25 +67640,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46873] = 3, + [46365] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1695), 13, - sym__dedent, + ACTIONS(1691), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1697), 34, + ACTIONS(1689), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67915,24 +67693,96 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46929] = 3, + [46421] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1699), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_STAR, + ACTIONS(1705), 1, + anon_sym_type, + ACTIONS(1707), 1, + anon_sym_LBRACK, + ACTIONS(1709), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(2083), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1587), 2, + sym_attribute, + sym_subscript, + STATE(2122), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(970), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1703), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [46513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 12, + ACTIONS(1669), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1703), 35, + ACTIONS(1671), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67950,7 +67800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67968,25 +67817,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46985] = 3, + [46569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 13, - sym__dedent, + ACTIONS(1679), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1707), 34, + ACTIONS(1677), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68004,6 +67852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68021,24 +67870,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47041] = 3, + [46625] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 12, + ACTIONS(1713), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 35, + ACTIONS(1711), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68050,13 +67899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68074,24 +67923,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47097] = 3, + [46681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 12, + ACTIONS(1685), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 35, + ACTIONS(1687), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68109,7 +67959,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68127,24 +67976,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47153] = 3, + [46737] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 12, - sym__dedent, + ACTIONS(1675), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1711), 35, + ACTIONS(1673), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68180,11 +68029,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47209] = 3, + [46793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 13, + ACTIONS(1717), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68192,13 +68041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 34, + ACTIONS(1715), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68233,24 +68082,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47265] = 3, + [46849] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 12, + ACTIONS(1721), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 35, + ACTIONS(1719), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68262,13 +68111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68286,24 +68135,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47321] = 3, + [46905] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 12, - sym__dedent, + ACTIONS(1665), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 35, + ACTIONS(1667), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68315,13 +68164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68339,96 +68188,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47377] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1715), 1, - sym_identifier, - ACTIONS(1717), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(1723), 1, - anon_sym_type, - ACTIONS(1725), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1524), 1, - sym_list_splat_pattern, - STATE(1554), 1, - sym_primary_expression, - STATE(1958), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1523), 2, - sym_attribute, - sym_subscript, - STATE(1912), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(978), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1721), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [47469] = 3, + [46961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 13, + ACTIONS(1681), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1731), 34, + ACTIONS(1683), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68446,6 +68223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68463,77 +68241,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47525] = 3, + [47017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 12, + ACTIONS(1665), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1735), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47581] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1701), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 35, + ACTIONS(1667), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68545,7 +68271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -68569,24 +68294,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47637] = 3, + [47073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1713), 12, + ACTIONS(1665), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1711), 35, + ACTIONS(1667), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68622,24 +68347,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47693] = 3, + [47129] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 12, + ACTIONS(1669), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1739), 35, + ACTIONS(1671), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68651,13 +68376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -68675,78 +68400,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47749] = 3, + [47185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 13, + ACTIONS(1713), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1743), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47805] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1689), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 34, + ACTIONS(1711), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68758,6 +68429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -68781,11 +68453,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47861] = 3, + [47241] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1741), 13, + ACTIONS(1695), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68793,13 +68465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1743), 34, + ACTIONS(1693), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68834,24 +68506,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47917] = 3, + [47297] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1691), 12, - sym__dedent, + ACTIONS(1659), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1693), 35, + ACTIONS(1657), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68887,95 +68559,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47973] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1715), 1, - sym_identifier, - ACTIONS(1717), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(1723), 1, - anon_sym_type, - ACTIONS(1725), 1, - anon_sym_LBRACK, - ACTIONS(1727), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1524), 1, - sym_list_splat_pattern, - STATE(1554), 1, - sym_primary_expression, - STATE(1958), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1523), 2, - sym_attribute, - sym_subscript, - STATE(1912), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(964), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1721), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [48065] = 3, + [47353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1733), 12, - sym__dedent, + ACTIONS(1669), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1735), 35, + ACTIONS(1671), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68987,13 +68588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69011,24 +68612,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48121] = 3, + [47409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 12, + ACTIONS(1695), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 35, + ACTIONS(1693), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69046,7 +68648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69064,24 +68665,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48177] = 3, + [47465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 12, + ACTIONS(1661), 13, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 35, + ACTIONS(1663), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69093,7 +68695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -69117,24 +68718,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48233] = 3, + [47521] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 12, + ACTIONS(1713), 13, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 35, + ACTIONS(1711), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69152,7 +68754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69170,24 +68771,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48289] = 3, + [47577] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1705), 12, + ACTIONS(1725), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1703), 35, + ACTIONS(1723), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69223,24 +68824,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48345] = 3, + [47633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 12, + ACTIONS(1695), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 35, + ACTIONS(1693), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69276,25 +68877,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48401] = 3, + [47689] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1709), 13, + ACTIONS(1695), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1707), 34, + ACTIONS(1693), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69306,6 +68906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -69329,25 +68930,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48457] = 3, + [47745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 13, - sym__dedent, + ACTIONS(1659), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1671), 34, + ACTIONS(1657), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69359,6 +68959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -69382,24 +68983,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48513] = 3, + [47801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 12, + ACTIONS(1713), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 35, + ACTIONS(1711), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69435,25 +69036,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48569] = 3, + [47857] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1729), 13, - sym__dedent, + ACTIONS(1659), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1731), 34, + ACTIONS(1657), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69488,25 +69089,95 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48625] = 3, + [47913] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1699), 1, + anon_sym_LPAREN, + ACTIONS(1701), 1, + anon_sym_STAR, + ACTIONS(1705), 1, + anon_sym_type, + ACTIONS(1707), 1, + anon_sym_LBRACK, + ACTIONS(1709), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1590), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(2083), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 13, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1587), 2, + sym_attribute, + sym_subscript, + STATE(2122), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(956), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1703), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [48005] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1713), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 34, + ACTIONS(1711), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69524,6 +69195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69541,24 +69213,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48681] = 3, + [48061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 12, + ACTIONS(1729), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1671), 35, + ACTIONS(1727), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69570,13 +69242,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69594,24 +69266,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48737] = 3, + [48117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 12, + ACTIONS(1721), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 35, + ACTIONS(1719), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69647,24 +69319,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48793] = 3, + [48173] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 12, + ACTIONS(1659), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 35, + ACTIONS(1657), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69700,25 +69372,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48849] = 3, + [48229] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 13, + ACTIONS(1695), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 34, + ACTIONS(1693), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69736,6 +69407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69753,24 +69425,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48905] = 3, + [48285] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 12, - sym__dedent, + ACTIONS(1725), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1677), 35, + ACTIONS(1723), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69782,13 +69454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69806,24 +69478,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48961] = 3, + [48341] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1737), 12, - sym__dedent, + ACTIONS(1713), 13, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, + anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1739), 35, + ACTIONS(1711), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69841,7 +69514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69859,11 +69531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49017] = 3, + [48397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 13, + ACTIONS(1717), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69871,13 +69543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1679), 34, + ACTIONS(1715), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69912,25 +69584,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49073] = 3, + [48453] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 13, + ACTIONS(1729), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1687), 34, + ACTIONS(1727), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69948,6 +69619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -69965,24 +69637,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49129] = 3, + [48509] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 12, + ACTIONS(1665), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1699), 35, + ACTIONS(1667), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70018,11 +69690,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49185] = 3, + [48565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 13, + ACTIONS(1669), 13, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70030,11 +69702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, ACTIONS(1671), 34, anon_sym_import, @@ -70071,28 +69743,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49241] = 5, - ACTIONS(1512), 1, - anon_sym_else, - STATE(820), 1, - sym_else_clause, + [48621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 12, + ACTIONS(1659), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1745), 32, + ACTIONS(1657), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70104,11 +69772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -70125,24 +69796,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49300] = 3, + [48677] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 12, + ACTIONS(1665), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1751), 34, + ACTIONS(1667), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70154,13 +69825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -70177,28 +69849,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49355] = 5, - ACTIONS(1512), 1, + [48733] = 5, + ACTIONS(1464), 1, anon_sym_else, - STATE(795), 1, + STATE(816), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 12, + ACTIONS(1733), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1753), 32, + ACTIONS(1731), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70231,28 +69903,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49414] = 5, - ACTIONS(1512), 1, - anon_sym_else, - STATE(791), 1, - sym_else_clause, + [48792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 12, + ACTIONS(1737), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1757), 32, + ACTIONS(1735), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70264,6 +69932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70285,26 +69955,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49473] = 5, - ACTIONS(1494), 1, - anon_sym_else, - STATE(734), 1, - sym_else_clause, + [48847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1747), 12, + ACTIONS(1739), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, + sym_float, + ACTIONS(1741), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48902] = 5, + ACTIONS(1500), 1, + anon_sym_finally, + STATE(833), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1743), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, sym_float, ACTIONS(1745), 32, anon_sym_import, @@ -70339,24 +70061,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49532] = 3, + [48961] = 5, + ACTIONS(1496), 1, + anon_sym_else, + STATE(759), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1761), 12, + ACTIONS(1733), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1763), 34, + ACTIONS(1731), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70368,8 +70094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70391,28 +70115,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49587] = 5, - ACTIONS(1512), 1, - anon_sym_else, - STATE(827), 1, - sym_else_clause, + [49020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 12, - sym__dedent, + ACTIONS(1737), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1765), 32, + ACTIONS(1735), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70424,6 +70144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70445,28 +70167,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49646] = 5, - ACTIONS(1494), 1, + [49075] = 5, + ACTIONS(1496), 1, anon_sym_else, - STATE(737), 1, + STATE(795), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1767), 12, + ACTIONS(1747), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1765), 32, + ACTIONS(1749), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70499,28 +70221,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49705] = 5, - ACTIONS(1516), 1, - anon_sym_finally, - STATE(771), 1, - sym_finally_clause, + [49134] = 5, + ACTIONS(1496), 1, + anon_sym_else, + STATE(762), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 12, - sym__dedent, + ACTIONS(1751), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1769), 32, + ACTIONS(1753), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70553,28 +70275,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49764] = 5, - ACTIONS(1498), 1, - anon_sym_finally, - STATE(787), 1, - sym_finally_clause, + [49193] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 12, + ACTIONS(1757), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1769), 32, + ACTIONS(1755), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70586,6 +70304,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70607,24 +70327,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49823] = 3, + [49248] = 5, + ACTIONS(1496), 1, + anon_sym_else, + STATE(793), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 12, + ACTIONS(1759), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1775), 34, + ACTIONS(1761), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70636,8 +70360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70659,82 +70381,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49878] = 5, - ACTIONS(1516), 1, + [49307] = 5, + ACTIONS(1468), 1, anon_sym_finally, - STATE(732), 1, + STATE(832), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 12, + ACTIONS(1765), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1777), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [49937] = 5, - ACTIONS(1494), 1, - anon_sym_else, - STATE(777), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1781), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1783), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70767,28 +70435,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49996] = 5, - ACTIONS(1494), 1, - anon_sym_else, - STATE(839), 1, - sym_else_clause, + [49366] = 5, + ACTIONS(1500), 1, + anon_sym_finally, + STATE(728), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 12, + ACTIONS(1765), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1787), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70821,28 +70489,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50055] = 5, - ACTIONS(1512), 1, + [49425] = 5, + ACTIONS(1464), 1, anon_sym_else, - STATE(776), 1, + STATE(811), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1781), 12, + ACTIONS(1751), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1783), 32, + ACTIONS(1753), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70875,28 +70543,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50114] = 5, - ACTIONS(1494), 1, + [49484] = 5, + ACTIONS(1496), 1, anon_sym_else, - STATE(760), 1, + STATE(831), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1755), 12, + ACTIONS(1767), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1753), 32, + ACTIONS(1769), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70929,28 +70597,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50173] = 5, - ACTIONS(1494), 1, - anon_sym_else, - STATE(774), 1, - sym_else_clause, + [49543] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1759), 12, + ACTIONS(1757), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1757), 32, + ACTIONS(1755), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70962,6 +70626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -70983,82 +70649,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50232] = 5, - ACTIONS(1512), 1, + [49598] = 5, + ACTIONS(1464), 1, anon_sym_else, - STATE(748), 1, + STATE(790), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1785), 12, + ACTIONS(1747), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1787), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [50291] = 5, - ACTIONS(1498), 1, - anon_sym_finally, - STATE(847), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1779), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1777), 32, + ACTIONS(1749), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71091,76 +70703,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50350] = 3, + [49657] = 5, + ACTIONS(1468), 1, + anon_sym_finally, + STATE(805), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1749), 12, + ACTIONS(1743), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1751), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [50405] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1761), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1763), 34, + ACTIONS(1745), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71172,8 +70736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -71195,24 +70757,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50460] = 3, + [49716] = 5, + ACTIONS(1464), 1, + anon_sym_else, + STATE(802), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1773), 12, + ACTIONS(1767), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1775), 34, + ACTIONS(1769), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71224,8 +70790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -71247,24 +70811,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50515] = 3, + [49775] = 5, + ACTIONS(1464), 1, + anon_sym_else, + STATE(840), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 12, + ACTIONS(1773), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1791), 33, + ACTIONS(1771), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71281,7 +70849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71298,24 +70865,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50569] = 3, + [49834] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 12, + ACTIONS(1739), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1793), 33, + ACTIONS(1741), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71327,12 +70894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71349,24 +70917,28 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50623] = 3, + [49889] = 5, + ACTIONS(1496), 1, + anon_sym_else, + STATE(723), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1795), 12, + ACTIONS(1773), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1793), 33, + ACTIONS(1771), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71383,7 +70955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71400,94 +70971,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50677] = 22, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + [49948] = 5, + ACTIONS(1464), 1, + anon_sym_else, + STATE(771), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1759), 12, + sym__dedent, sym_string_start, - ACTIONS(1797), 1, - sym_identifier, - ACTIONS(1799), 1, anon_sym_LPAREN, - ACTIONS(1801), 1, - anon_sym_RPAREN, - ACTIONS(1803), 1, anon_sym_STAR, - ACTIONS(1807), 1, - anon_sym_type, - ACTIONS(1809), 1, anon_sym_LBRACK, - ACTIONS(1811), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1577), 1, - sym_primary_expression, - STATE(2056), 1, - sym_pattern, - STATE(2478), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1582), 2, - sym_attribute, - sym_subscript, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1805), 4, + sym_ellipsis, + sym_float, + ACTIONS(1761), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [50769] = 3, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1789), 12, + ACTIONS(1777), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1791), 33, + ACTIONS(1775), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71521,62 +71076,62 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50823] = 22, - ACTIONS(318), 1, + [50061] = 22, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1797), 1, + ACTIONS(1779), 1, sym_identifier, - ACTIONS(1799), 1, + ACTIONS(1781), 1, anon_sym_LPAREN, - ACTIONS(1803), 1, + ACTIONS(1783), 1, + anon_sym_RPAREN, + ACTIONS(1785), 1, anon_sym_STAR, - ACTIONS(1807), 1, + ACTIONS(1789), 1, anon_sym_type, - ACTIONS(1809), 1, + ACTIONS(1791), 1, anon_sym_LBRACK, - ACTIONS(1811), 1, + ACTIONS(1793), 1, anon_sym_await, - ACTIONS(1813), 1, - anon_sym_RPAREN, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1577), 1, + STATE(1619), 1, sym_primary_expression, - STATE(2056), 1, + STATE(1620), 1, + sym_list_splat_pattern, + STATE(2275), 1, sym_pattern, - STATE(2542), 1, + STATE(2760), 1, sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1582), 2, + STATE(1610), 2, sym_attribute, sym_subscript, - STATE(2258), 2, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1805), 4, + ACTIONS(1787), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -71591,24 +71146,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [50915] = 3, + [50153] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, - sym__dedent, + ACTIONS(1795), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1508), 32, + ACTIONS(1797), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71625,6 +71180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71641,24 +71197,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50968] = 3, + [50207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 12, - sym__dedent, + ACTIONS(1777), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1815), 32, + ACTIONS(1775), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71675,6 +71231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71691,24 +71248,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51021] = 3, + [50261] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 12, + ACTIONS(1795), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1819), 32, + ACTIONS(1797), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71725,6 +71282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -71741,74 +71299,94 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51074] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1825), 12, - sym__dedent, + [50315] = 22, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, anon_sym_LPAREN, + ACTIONS(1785), 1, anon_sym_STAR, + ACTIONS(1789), 1, + anon_sym_type, + ACTIONS(1791), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1793), 1, + anon_sym_await, + ACTIONS(1799), 1, + anon_sym_RPAREN, + STATE(1007), 1, + sym_string, + STATE(1619), 1, + sym_primary_expression, + STATE(1620), 1, + sym_list_splat_pattern, + STATE(2275), 1, + sym_pattern, + STATE(2751), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1823), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1610), 2, + sym_attribute, + sym_subscript, + STATE(2531), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51127] = 3, + ACTIONS(1787), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [50407] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 12, - sym__dedent, + ACTIONS(1801), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1827), 32, + ACTIONS(1803), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71841,74 +71419,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51180] = 3, + [50460] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 12, + ACTIONS(1807), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(1831), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [51233] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1835), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1837), 32, + ACTIONS(1805), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71941,24 +71469,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51286] = 3, + [50513] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 12, + ACTIONS(1809), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1841), 32, + ACTIONS(1811), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71991,60 +71519,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51339] = 21, - ACTIONS(318), 1, + [50566] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1843), 1, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(1845), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1849), 1, - anon_sym_in, - ACTIONS(1851), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1823), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1627), 1, sym_primary_expression, - STATE(1599), 1, + STATE(2261), 1, sym_pattern, + STATE(2811), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -72059,24 +71587,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [51428] = 3, + [50655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 12, + ACTIONS(1825), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1859), 32, + ACTIONS(1827), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72109,24 +71637,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51481] = 3, + [50708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1861), 12, + ACTIONS(1831), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1863), 32, + ACTIONS(1829), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72159,124 +71687,160 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51534] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1865), 12, + [50761] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1414), 1, anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1823), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2283), 1, + sym_pattern, + STATE(2747), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1867), 32, - anon_sym_import, - anon_sym_from, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1817), 4, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [50850] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [51587] = 3, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2284), 1, + sym_pattern, + STATE(2745), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(318), 2, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1871), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51640] = 3, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [50939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 12, + ACTIONS(1833), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1769), 32, + ACTIONS(1835), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72309,24 +71873,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51693] = 3, + [50992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1875), 12, - sym__dedent, + ACTIONS(1837), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1873), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72359,24 +71923,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51746] = 3, + [51045] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1490), 12, + ACTIONS(1807), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(1805), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72409,24 +71973,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51799] = 3, + [51098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 12, + ACTIONS(1843), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1879), 32, + ACTIONS(1841), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72459,24 +72023,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51852] = 3, + [51151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 12, + ACTIONS(1845), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1883), 32, + ACTIONS(1847), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72509,24 +72073,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51905] = 3, + [51204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1885), 12, + ACTIONS(1849), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1887), 32, + ACTIONS(1851), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72559,24 +72123,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51958] = 3, + [51257] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2353), 1, + sym_pattern, + STATE(2687), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 12, + ACTIONS(1853), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1891), 32, + ACTIONS(1855), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72609,24 +72241,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52011] = 3, + [51399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 12, - sym__dedent, + ACTIONS(1857), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1893), 32, + ACTIONS(1859), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72659,24 +72291,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52064] = 3, + [51452] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1861), 1, + sym_identifier, + ACTIONS(1863), 1, + anon_sym_LPAREN, + ACTIONS(1865), 1, + anon_sym_STAR, + ACTIONS(1869), 1, + anon_sym_type, + ACTIONS(1871), 1, + anon_sym_LBRACK, + ACTIONS(1873), 1, + anon_sym_RBRACK, + ACTIONS(1875), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1630), 1, + sym_list_splat_pattern, + STATE(1631), 1, + sym_primary_expression, + STATE(2524), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 12, - sym__dedent, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1611), 2, + sym_attribute, + sym_subscript, + STATE(2616), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1867), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51541] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1877), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1897), 32, + ACTIONS(1879), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72709,24 +72409,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52117] = 3, + [51594] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 12, - sym__dedent, + ACTIONS(1881), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1901), 32, + ACTIONS(1883), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72759,24 +72459,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52170] = 3, + [51647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1905), 12, + ACTIONS(1743), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1907), 32, + ACTIONS(1745), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72809,24 +72509,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52223] = 3, + [51700] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1911), 12, - sym__dedent, + ACTIONS(1502), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1909), 32, + ACTIONS(1504), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72859,24 +72559,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52276] = 3, + [51753] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1913), 12, + ACTIONS(1462), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1915), 32, + ACTIONS(1460), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72909,24 +72609,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52329] = 3, + [51806] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1917), 12, + ACTIONS(1887), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1919), 32, + ACTIONS(1885), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72959,24 +72659,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52382] = 3, + [51859] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1921), 12, + ACTIONS(1891), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1923), 32, + ACTIONS(1889), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73009,24 +72709,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52435] = 3, + [51912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1925), 12, + ACTIONS(1843), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1927), 32, + ACTIONS(1841), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73059,24 +72759,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52488] = 3, + [51965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1817), 12, + ACTIONS(1891), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1815), 32, + ACTIONS(1889), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73109,24 +72809,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52541] = 3, + [52018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 12, + ACTIONS(1887), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1931), 32, + ACTIONS(1885), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73159,24 +72859,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52594] = 3, + [52071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1933), 12, + ACTIONS(1462), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1935), 32, + ACTIONS(1460), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73209,24 +72909,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52647] = 3, + [52124] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_await, + ACTIONS(1893), 1, + anon_sym_in, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(1659), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1937), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52213] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1895), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1939), 32, + ACTIONS(1897), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73259,110 +73027,128 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52700] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1941), 12, + [52266] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1414), 1, anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1823), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2324), 1, + sym_pattern, + STATE(2720), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1943), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [52753] = 21, - ACTIONS(318), 1, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52355] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1843), 1, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(1845), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1823), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1627), 1, sym_primary_expression, - STATE(2033), 1, + STATE(2331), 1, sym_pattern, - STATE(2535), 1, + STATE(2711), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -73377,24 +73163,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [52842] = 3, + [52444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1947), 12, - sym__dedent, + ACTIONS(1899), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1945), 32, + ACTIONS(1901), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73427,24 +73213,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52895] = 3, + [52497] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 12, - sym__dedent, + ACTIONS(1831), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1949), 32, + ACTIONS(1829), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73477,24 +73263,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52948] = 3, + [52550] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 12, + ACTIONS(1905), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1953), 32, + ACTIONS(1903), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73527,24 +73313,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53001] = 3, + [52603] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2419), 1, + sym_pattern, + STATE(2629), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 12, - sym__dedent, + ACTIONS(1907), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1957), 32, + ACTIONS(1909), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73577,24 +73431,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53054] = 3, + [52745] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 12, - sym__dedent, + ACTIONS(1911), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1961), 32, + ACTIONS(1913), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73627,24 +73481,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53107] = 3, + [52798] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1965), 12, + ACTIONS(1915), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1967), 32, + ACTIONS(1917), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73677,24 +73531,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53160] = 3, + [52851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 12, - sym__dedent, + ACTIONS(1919), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1777), 32, + ACTIONS(1921), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73727,24 +73581,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53213] = 3, + [52904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1969), 12, + ACTIONS(1923), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1971), 32, + ACTIONS(1925), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73777,24 +73631,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53266] = 3, + [52957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1975), 12, - sym__dedent, + ACTIONS(1927), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1973), 32, + ACTIONS(1929), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73827,24 +73681,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53319] = 3, + [53010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1977), 12, + ACTIONS(1931), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, + sym_float, + ACTIONS(1933), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1935), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, sym_float, - ACTIONS(1979), 32, + ACTIONS(1937), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73877,24 +73781,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53372] = 3, + [53116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1981), 12, + ACTIONS(1939), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1983), 32, + ACTIONS(1941), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73927,24 +73831,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53425] = 3, + [53169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 12, + ACTIONS(1853), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1987), 32, + ACTIONS(1855), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73977,24 +73881,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53478] = 3, + [53222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1991), 12, + ACTIONS(1857), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1989), 32, + ACTIONS(1859), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74027,24 +73931,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53531] = 3, + [53275] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1995), 12, - sym__dedent, + ACTIONS(1943), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1993), 32, + ACTIONS(1945), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74077,24 +73981,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53584] = 3, + [53328] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1995), 12, + ACTIONS(1877), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1993), 32, + ACTIONS(1879), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74127,24 +74031,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53637] = 3, + [53381] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, + sym_identifier, + ACTIONS(1815), 1, + anon_sym_LPAREN, + ACTIONS(1819), 1, + anon_sym_type, + ACTIONS(1821), 1, + anon_sym_LBRACK, + ACTIONS(1823), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1617), 1, + sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, + STATE(2500), 1, + sym_pattern, + STATE(2772), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1969), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1625), 2, + sym_attribute, + sym_subscript, + STATE(1663), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1817), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53470] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1881), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1971), 32, + ACTIONS(1883), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74177,24 +74149,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53690] = 3, + [53523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1913), 12, + ACTIONS(1949), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1915), 32, + ACTIONS(1947), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74227,74 +74199,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53743] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1905), 12, - sym__dedent, + [53576] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, sym_string_start, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, anon_sym_LPAREN, + ACTIONS(1785), 1, anon_sym_STAR, + ACTIONS(1789), 1, + anon_sym_type, + ACTIONS(1791), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, + ACTIONS(1793), 1, + anon_sym_await, + ACTIONS(1873), 1, + anon_sym_RPAREN, + STATE(1007), 1, + sym_string, + STATE(1619), 1, + sym_primary_expression, + STATE(1620), 1, + sym_list_splat_pattern, + STATE(2587), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1907), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(1610), 2, + sym_attribute, + sym_subscript, + STATE(2531), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [53796] = 3, + ACTIONS(1787), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53665] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1889), 12, + ACTIONS(1743), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1891), 32, + ACTIONS(1745), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74327,60 +74317,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53849] = 21, - ACTIONS(318), 1, + [53718] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1797), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(1799), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1803), 1, - anon_sym_STAR, - ACTIONS(1807), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(1809), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1811), 1, + ACTIONS(1823), 1, anon_sym_await, - ACTIONS(1997), 1, - anon_sym_RPAREN, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1567), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1577), 1, + STATE(1627), 1, sym_primary_expression, - STATE(2283), 1, + STATE(2259), 1, sym_pattern, + STATE(2815), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1582), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(2258), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1805), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74395,24 +74385,74 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [53938] = 3, + [53807] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1991), 12, + ACTIONS(1502), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, + sym_float, + ACTIONS(1504), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [53860] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1895), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, sym_float, - ACTIONS(1989), 32, + ACTIONS(1897), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74445,74 +74485,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53991] = 3, + [53913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1999), 12, + ACTIONS(1899), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_TILDE, - sym_ellipsis, anon_sym_LBRACE, - sym_float, - ACTIONS(2001), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [54044] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2003), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2005), 32, + ACTIONS(1901), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74545,24 +74535,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54097] = 3, + [53966] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1885), 12, + ACTIONS(1907), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1887), 32, + ACTIONS(1909), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74595,24 +74585,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54150] = 3, + [54019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1975), 12, + ACTIONS(1911), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1973), 32, + ACTIONS(1913), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74645,24 +74635,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54203] = 3, + [54072] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2009), 12, + ACTIONS(1953), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2007), 32, + ACTIONS(1951), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74695,60 +74685,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54256] = 21, - ACTIONS(318), 1, + [54125] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, + ACTIONS(1861), 1, sym_identifier, - ACTIONS(1845), 1, + ACTIONS(1863), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1865), 1, + anon_sym_STAR, + ACTIONS(1869), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1871), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1875), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1955), 1, + anon_sym_RBRACK, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1630), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1631), 1, sym_primary_expression, - STATE(2057), 1, + STATE(2524), 1, sym_pattern, - STATE(2471), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1867), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -74763,24 +74753,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [54345] = 3, + [54214] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1779), 12, + ACTIONS(1915), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1777), 32, + ACTIONS(1917), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74813,24 +74803,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54398] = 3, + [54267] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1985), 12, + ACTIONS(1959), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1987), 32, + ACTIONS(1957), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74863,24 +74853,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54451] = 3, + [54320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1977), 12, + ACTIONS(1963), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1979), 32, + ACTIONS(1961), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74913,24 +74903,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54504] = 3, + [54373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 12, + ACTIONS(1967), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2013), 32, + ACTIONS(1965), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74963,24 +74953,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54557] = 3, + [54426] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1965), 12, + ACTIONS(1971), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1967), 32, + ACTIONS(1969), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75013,24 +75003,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54610] = 3, + [54479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1937), 12, - sym__dedent, + ACTIONS(1963), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1939), 32, + ACTIONS(1961), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75063,24 +75053,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54663] = 3, + [54532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1963), 12, + ACTIONS(1975), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1961), 32, + ACTIONS(1973), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75113,92 +75103,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54716] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2032), 1, - sym_pattern, - STATE(2539), 1, - sym_pattern_list, + [54585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1979), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, + sym_ellipsis, + sym_float, + ACTIONS(1977), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54805] = 3, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [54638] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1510), 12, + ACTIONS(1983), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1508), 32, + ACTIONS(1981), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75231,24 +75203,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54858] = 3, + [54691] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1925), 12, - sym__dedent, + ACTIONS(1985), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1927), 32, + ACTIONS(1987), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75281,24 +75253,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54911] = 3, + [54744] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2017), 12, - sym__dedent, + ACTIONS(1967), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2015), 32, + ACTIONS(1965), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75331,24 +75303,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54964] = 3, + [54797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2019), 12, + ACTIONS(1949), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2021), 32, + ACTIONS(1947), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75381,24 +75353,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55017] = 3, + [54850] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2023), 12, + ACTIONS(1991), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2025), 32, + ACTIONS(1989), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75431,24 +75403,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55070] = 3, + [54903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2029), 12, - sym__dedent, + ACTIONS(1983), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2027), 32, + ACTIONS(1981), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75481,92 +75453,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55123] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2154), 1, - sym_pattern, - STATE(2373), 1, - sym_pattern_list, + [54956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55212] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2023), 12, - sym__dedent, + ACTIONS(1979), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2025), 32, + ACTIONS(1977), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75599,92 +75503,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55265] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, + [55009] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1971), 12, sym_string_start, - ACTIONS(1997), 1, - anon_sym_RBRACK, - ACTIONS(2031), 1, - sym_identifier, - ACTIONS(2033), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2035), 1, anon_sym_STAR, - ACTIONS(2039), 1, - anon_sym_type, - ACTIONS(2041), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1555), 1, - sym_primary_expression, - STATE(1558), 1, - sym_list_splat_pattern, - STATE(2338), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1548), 2, - sym_attribute, - sym_subscript, - STATE(2299), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2037), 4, + sym_ellipsis, + sym_float, + ACTIONS(1969), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55354] = 3, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [55062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1999), 12, + ACTIONS(1995), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2001), 32, + ACTIONS(1993), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75717,92 +75603,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55407] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2058), 1, - sym_pattern, - STATE(2469), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55496] = 3, + [55115] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1933), 12, + ACTIONS(1999), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1935), 32, + ACTIONS(1997), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75835,24 +75653,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55549] = 3, + [55168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1959), 12, + ACTIONS(2003), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1957), 32, + ACTIONS(2001), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75885,60 +75703,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55602] = 21, - ACTIONS(318), 1, + [55221] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(1843), 1, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(1845), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1823), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(2005), 1, + anon_sym_in, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1627), 1, sym_primary_expression, - STATE(2118), 1, + STATE(1659), 1, sym_pattern, - STATE(2401), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75953,24 +75771,24 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [55691] = 3, + [55310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1490), 12, + ACTIONS(2009), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1492), 32, + ACTIONS(2007), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76003,24 +75821,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55744] = 3, + [55363] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1875), 12, + ACTIONS(1959), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1873), 32, + ACTIONS(1957), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76053,92 +75871,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55797] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2037), 1, - sym_pattern, - STATE(2516), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55886] = 3, + [55416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1955), 12, + ACTIONS(2013), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1953), 32, + ACTIONS(2011), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76171,24 +75921,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55939] = 3, + [55469] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1951), 12, + ACTIONS(2017), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1949), 32, + ACTIONS(2015), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76221,24 +75971,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55992] = 3, + [55522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1771), 12, + ACTIONS(1765), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1769), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76271,92 +76021,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56045] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1797), 1, - sym_identifier, - ACTIONS(1799), 1, - anon_sym_LPAREN, - ACTIONS(1803), 1, - anon_sym_STAR, - ACTIONS(1807), 1, - anon_sym_type, - ACTIONS(1809), 1, - anon_sym_LBRACK, - ACTIONS(1811), 1, - anon_sym_await, - ACTIONS(2045), 1, - anon_sym_RPAREN, - STATE(1032), 1, - sym_string, - STATE(1567), 1, - sym_list_splat_pattern, - STATE(1577), 1, - sym_primary_expression, - STATE(2283), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1582), 2, - sym_attribute, - sym_subscript, - STATE(2258), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1805), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [56134] = 3, + [55575] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1947), 12, + ACTIONS(2021), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1945), 32, + ACTIONS(2019), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76389,24 +76071,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56187] = 3, + [55628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1835), 12, + ACTIONS(1939), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1837), 32, + ACTIONS(1941), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76439,24 +76121,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56240] = 3, + [55681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1869), 12, + ACTIONS(1935), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1871), 32, + ACTIONS(1937), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76489,24 +76171,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56293] = 3, + [55734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1877), 12, + ACTIONS(1801), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1879), 32, + ACTIONS(1803), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76539,24 +76221,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56346] = 3, + [55787] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1821), 12, + ACTIONS(1931), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1819), 32, + ACTIONS(1933), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76589,24 +76271,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56399] = 3, + [55840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1917), 12, + ACTIONS(1927), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1919), 32, + ACTIONS(1929), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76639,24 +76321,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56452] = 3, + [55893] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1921), 12, - sym__dedent, + ACTIONS(1991), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1923), 32, + ACTIONS(1989), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76689,24 +76371,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56505] = 3, + [55946] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1941), 12, + ACTIONS(1923), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1943), 32, + ACTIONS(1925), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76739,24 +76421,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56558] = 3, + [55999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1857), 12, - sym__dedent, + ACTIONS(1975), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1859), 32, + ACTIONS(1973), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76789,92 +76471,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56611] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - ACTIONS(2047), 1, - anon_sym_in, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(1599), 1, - sym_pattern, + [56052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [56700] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1861), 12, + ACTIONS(1919), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1863), 32, + ACTIONS(1921), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76907,24 +76521,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56753] = 3, + [56105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1865), 12, - sym__dedent, + ACTIONS(2023), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1867), 32, + ACTIONS(2025), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -76957,24 +76571,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56806] = 3, + [56158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1911), 12, + ACTIONS(1953), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1909), 32, + ACTIONS(1951), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77007,24 +76621,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56859] = 3, + [56211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1881), 12, - sym__dedent, + ACTIONS(2027), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1883), 32, + ACTIONS(2029), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77057,24 +76671,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56912] = 3, + [56264] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1929), 12, + ACTIONS(2027), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1931), 32, + ACTIONS(2029), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77107,24 +76721,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56965] = 3, + [56317] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2009), 12, + ACTIONS(2023), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2007), 32, + ACTIONS(2025), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77157,160 +76771,74 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57018] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2086), 1, - sym_pattern, - STATE(2444), 1, - sym_pattern_list, + [56370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(1995), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1847), 4, + sym_ellipsis, + sym_float, + ACTIONS(1993), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57107] = 21, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, - sym_identifier, - ACTIONS(1845), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, anon_sym_type, - ACTIONS(1853), 1, - anon_sym_LBRACK, - ACTIONS(1855), 1, - anon_sym_await, - STATE(1032), 1, - sym_string, - STATE(1552), 1, - sym_list_splat_pattern, - STATE(1578), 1, - sym_primary_expression, - STATE(2090), 1, - sym_pattern, - STATE(2435), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(316), 2, - sym_ellipsis, - sym_float, - STATE(1549), 2, - sym_attribute, - sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(320), 4, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57196] = 3, + [56423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1903), 12, + ACTIONS(1943), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1901), 32, + ACTIONS(1945), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77343,24 +76871,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57249] = 3, + [56476] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1899), 12, + ACTIONS(1999), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1897), 32, + ACTIONS(1997), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77393,24 +76921,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57302] = 3, + [56529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1895), 12, + ACTIONS(2021), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1893), 32, + ACTIONS(2019), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77443,24 +76971,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57355] = 3, + [56582] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1839), 12, + ACTIONS(1985), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1841), 32, + ACTIONS(1987), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77493,24 +77021,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57408] = 3, + [56635] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2017), 12, + ACTIONS(2003), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2015), 32, + ACTIONS(2001), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77543,24 +77071,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57461] = 3, + [56688] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2011), 12, - sym__dedent, + ACTIONS(1905), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2013), 32, + ACTIONS(1903), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77593,24 +77121,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57514] = 3, + [56741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1833), 12, + ACTIONS(2033), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1831), 32, + ACTIONS(2031), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77643,24 +77171,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57567] = 3, + [56794] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2019), 12, - sym__dedent, + ACTIONS(1765), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2021), 32, + ACTIONS(1763), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77693,24 +77221,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57620] = 3, + [56847] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2003), 12, - sym__dedent, + ACTIONS(2009), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(2005), 32, + ACTIONS(2007), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77743,24 +77271,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57673] = 3, + [56900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1981), 12, + ACTIONS(1837), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1983), 32, + ACTIONS(1839), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77793,24 +77321,24 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57726] = 3, + [56953] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1829), 12, + ACTIONS(2017), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1827), 32, + ACTIONS(2015), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77843,24 +77371,92 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57779] = 3, + [57006] = 21, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1779), 1, + sym_identifier, + ACTIONS(1781), 1, + anon_sym_LPAREN, + ACTIONS(1785), 1, + anon_sym_STAR, + ACTIONS(1789), 1, + anon_sym_type, + ACTIONS(1791), 1, + anon_sym_LBRACK, + ACTIONS(1793), 1, + anon_sym_await, + ACTIONS(1955), 1, + anon_sym_RPAREN, + STATE(1007), 1, + sym_string, + STATE(1619), 1, + sym_primary_expression, + STATE(1620), 1, + sym_list_splat_pattern, + STATE(2587), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1825), 12, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1610), 2, + sym_attribute, + sym_subscript, + STATE(2531), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1787), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57095] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1833), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, - anon_sym_LBRACE, sym_float, - ACTIONS(1823), 32, + ACTIONS(1835), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -77893,60 +77489,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57832] = 21, - ACTIONS(318), 1, + [57148] = 21, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(2031), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(2033), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(2035), 1, - anon_sym_STAR, - ACTIONS(2039), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(2041), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(1823), 1, anon_sym_await, - ACTIONS(2045), 1, - anon_sym_RBRACK, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1555), 1, - sym_primary_expression, - STATE(1558), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(2338), 1, + STATE(1627), 1, + sym_primary_expression, + STATE(2297), 1, sym_pattern, + STATE(2738), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1548), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2037), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77961,24 +77557,174 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [57921] = 3, + [57237] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2029), 12, + ACTIONS(1809), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1811), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57290] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2013), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(2011), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57343] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2033), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, + sym_float, + ACTIONS(2031), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57396] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1825), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, sym_float, - ACTIONS(2027), 32, + ACTIONS(1827), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -78011,60 +77757,158 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57974] = 21, - ACTIONS(318), 1, + [57449] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1849), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(324), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1851), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57502] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1845), 12, + sym__dedent, sym_string_start, - ACTIONS(1370), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(1843), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1847), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1845), 1, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [57555] = 20, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(1697), 1, + sym_identifier, + ACTIONS(1699), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1701), 1, + anon_sym_STAR, + ACTIONS(1705), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1707), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1709), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1590), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1626), 1, sym_primary_expression, - STATE(2183), 1, + STATE(2083), 1, sym_pattern, - STATE(2402), 1, - sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1587), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(2122), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1703), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78079,58 +77923,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58063] = 20, - ACTIONS(318), 1, + [57641] = 20, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(2031), 1, + ACTIONS(1779), 1, sym_identifier, - ACTIONS(2033), 1, + ACTIONS(1781), 1, anon_sym_LPAREN, - ACTIONS(2035), 1, + ACTIONS(1785), 1, anon_sym_STAR, - ACTIONS(2039), 1, + ACTIONS(1789), 1, anon_sym_type, - ACTIONS(2041), 1, + ACTIONS(1791), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, + ACTIONS(1793), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1555), 1, + STATE(1619), 1, sym_primary_expression, - STATE(1558), 1, + STATE(1620), 1, sym_list_splat_pattern, - STATE(2338), 1, + STATE(2587), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1548), 2, + STATE(1610), 2, sym_attribute, sym_subscript, - STATE(2299), 2, + STATE(2531), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2037), 4, + ACTIONS(1787), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78145,58 +77989,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58149] = 20, - ACTIONS(318), 1, + [57727] = 20, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(1843), 1, + ACTIONS(1040), 1, sym_identifier, - ACTIONS(1845), 1, + ACTIONS(1042), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1048), 1, anon_sym_type, - ACTIONS(1853), 1, + ACTIONS(1050), 1, anon_sym_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1052), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(2035), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1552), 1, + STATE(1504), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1634), 1, sym_primary_expression, - STATE(1599), 1, + STATE(1659), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1549), 2, + STATE(1505), 2, sym_attribute, sym_subscript, - STATE(1595), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1847), 4, + ACTIONS(1046), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78211,58 +78055,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58235] = 20, + [57813] = 20, ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(318), 1, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(962), 1, + ACTIONS(954), 1, sym_identifier, - ACTIONS(966), 1, + ACTIONS(958), 1, anon_sym_LPAREN, - ACTIONS(972), 1, + ACTIONS(964), 1, anon_sym_type, - ACTIONS(974), 1, + ACTIONS(966), 1, anon_sym_LBRACK, - ACTIONS(976), 1, + ACTIONS(968), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1443), 1, + STATE(1422), 1, sym_list_splat_pattern, - STATE(1553), 1, - sym_pattern, - STATE(1556), 1, + STATE(1618), 1, sym_primary_expression, + STATE(1638), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1444), 2, + STATE(1419), 2, sym_attribute, sym_subscript, - STATE(1560), 2, + STATE(1615), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(970), 4, + ACTIONS(962), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78277,58 +78121,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58321] = 20, - ACTIONS(318), 1, + [57899] = 20, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1715), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(1813), 1, sym_identifier, - ACTIONS(1717), 1, + ACTIONS(1815), 1, anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_STAR, - ACTIONS(1723), 1, + ACTIONS(1819), 1, anon_sym_type, - ACTIONS(1725), 1, + ACTIONS(1821), 1, anon_sym_LBRACK, - ACTIONS(1727), 1, + ACTIONS(1823), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1524), 1, + STATE(1617), 1, sym_list_splat_pattern, - STATE(1554), 1, + STATE(1627), 1, sym_primary_expression, - STATE(1958), 1, + STATE(1659), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1523), 2, + STATE(1625), 2, sym_attribute, sym_subscript, - STATE(1912), 2, + STATE(1663), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1721), 4, + ACTIONS(1817), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78343,58 +78187,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58407] = 20, - ACTIONS(318), 1, + [57985] = 20, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1797), 1, + ACTIONS(1861), 1, sym_identifier, - ACTIONS(1799), 1, + ACTIONS(1863), 1, anon_sym_LPAREN, - ACTIONS(1803), 1, + ACTIONS(1865), 1, anon_sym_STAR, - ACTIONS(1807), 1, + ACTIONS(1869), 1, anon_sym_type, - ACTIONS(1809), 1, + ACTIONS(1871), 1, anon_sym_LBRACK, - ACTIONS(1811), 1, + ACTIONS(1875), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1567), 1, + STATE(1630), 1, sym_list_splat_pattern, - STATE(1577), 1, + STATE(1631), 1, sym_primary_expression, - STATE(2283), 1, + STATE(2524), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1582), 2, + STATE(1611), 2, sym_attribute, sym_subscript, - STATE(2258), 2, + STATE(2616), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1805), 4, + ACTIONS(1867), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78409,58 +78253,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58493] = 20, - ACTIONS(318), 1, + [58071] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, - ACTIONS(1050), 1, - sym_identifier, - ACTIONS(1052), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(1058), 1, - anon_sym_type, - ACTIONS(1060), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1062), 1, - anon_sym_await, - ACTIONS(2049), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(2037), 1, + sym_identifier, + ACTIONS(2043), 1, + anon_sym_type, + ACTIONS(2045), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1509), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1572), 1, + STATE(1619), 1, sym_primary_expression, - STATE(1599), 1, - sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1508), 2, + ACTIONS(2039), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1600), 2, sym_attribute, sym_subscript, - STATE(1595), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1056), 4, + ACTIONS(2041), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78475,8 +78317,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58579] = 19, - ACTIONS(318), 1, + [58154] = 19, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -78484,47 +78326,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2051), 1, + ACTIONS(2047), 1, sym_identifier, - ACTIONS(2057), 1, + ACTIONS(2051), 1, anon_sym_type, - ACTIONS(2059), 1, + ACTIONS(2053), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1577), 1, + STATE(1627), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(2053), 2, - anon_sym_RPAREN, + ACTIONS(2039), 2, anon_sym_COMMA, - STATE(1539), 2, + anon_sym_COLON, + STATE(1636), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2055), 4, + ACTIONS(2049), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78539,58 +78381,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58662] = 19, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [58237] = 17, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2061), 1, - sym_identifier, - ACTIONS(2065), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(2067), 1, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(724), 1, + sym_string_start, + ACTIONS(1228), 1, + anon_sym_STAR, + ACTIONS(2055), 1, + anon_sym_not, + STATE(987), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1578), 1, + STATE(1013), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(2053), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1570), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2063), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(704), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78603,8 +78442,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58745] = 17, - ACTIONS(318), 1, + [58315] = 17, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -78612,31 +78451,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2069), 1, + ACTIONS(2057), 1, anon_sym_not, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1152), 1, + STATE(1051), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -78647,7 +78486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78664,51 +78503,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58823] = 17, - ACTIONS(714), 1, + [58393] = 17, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1244), 1, anon_sym_STAR, - ACTIONS(2071), 1, + ACTIONS(2059), 1, anon_sym_not, - STATE(1024), 1, + STATE(1011), 1, sym_string, - STATE(1075), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78725,112 +78564,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58901] = 17, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(744), 1, - anon_sym_type, - ACTIONS(746), 1, - anon_sym_LBRACK, + [58471] = 17, ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(754), 1, - anon_sym_await, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1308), 1, - anon_sym_STAR, - ACTIONS(2073), 1, - anon_sym_not, - STATE(1044), 1, - sym_string, - STATE(1101), 1, - sym_primary_expression, - STATE(1300), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(750), 2, - sym_ellipsis, - sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(742), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1415), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [58979] = 17, - ACTIONS(760), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1312), 1, anon_sym_STAR, - ACTIONS(2075), 1, + ACTIONS(2061), 1, anon_sym_not, - STATE(998), 1, + STATE(1009), 1, sym_string, - STATE(1011), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78847,51 +78625,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59057] = 17, - ACTIONS(782), 1, + [58549] = 17, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(976), 1, anon_sym_STAR, - ACTIONS(2077), 1, + ACTIONS(2063), 1, anon_sym_not, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1131), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78908,40 +78686,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59135] = 17, - ACTIONS(75), 1, + [58627] = 17, + ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - ACTIONS(2079), 1, + ACTIONS(2065), 1, anon_sym_not, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(996), 1, + STATE(976), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -78952,7 +78730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78969,51 +78747,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59213] = 17, - ACTIONS(804), 1, + [58705] = 17, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1240), 1, anon_sym_STAR, - ACTIONS(2081), 1, + ACTIONS(2067), 1, anon_sym_not, - STATE(1057), 1, + STATE(1034), 1, sym_string, - STATE(1215), 1, + STATE(1130), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79030,51 +78808,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59291] = 17, - ACTIONS(689), 1, + [58783] = 17, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1288), 1, anon_sym_STAR, - ACTIONS(2083), 1, + ACTIONS(2069), 1, anon_sym_not, - STATE(989), 1, + STATE(1152), 1, sym_string, - STATE(1022), 1, + STATE(1211), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79091,49 +78869,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59369] = 16, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, + [58861] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(978), 1, + STATE(1009), 1, sym_string, - STATE(993), 1, + STATE(1069), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79150,49 +78928,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59444] = 16, - ACTIONS(714), 1, + [58936] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(987), 1, sym_string, - STATE(1114), 1, + STATE(1043), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79209,49 +78987,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59519] = 16, - ACTIONS(782), 1, + [59011] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1155), 1, + STATE(1145), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79268,49 +79046,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59594] = 16, - ACTIONS(689), 1, + [59086] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1011), 1, sym_string, - STATE(1049), 1, + STATE(1112), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79327,49 +79105,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59669] = 16, - ACTIONS(782), 1, + [59161] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1149), 1, + STATE(1115), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79386,8 +79164,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59744] = 18, - ACTIONS(318), 1, + [59236] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -79395,44 +79173,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2085), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2089), 1, + ACTIONS(2075), 1, anon_sym_type, - ACTIONS(2091), 1, + ACTIONS(2077), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1577), 1, + STATE(1635), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1442), 2, + STATE(1237), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2087), 4, + ACTIONS(2073), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79447,49 +79225,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59823] = 16, - ACTIONS(689), 1, + [59315] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1011), 1, sym_string, - STATE(1036), 1, + STATE(1116), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79506,49 +79284,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59898] = 16, - ACTIONS(782), 1, + [59390] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(987), 1, sym_string, - STATE(1143), 1, + STATE(1029), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79565,53 +79343,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59973] = 16, - ACTIONS(782), 1, - anon_sym_LPAREN, - ACTIONS(788), 1, - anon_sym_type, - ACTIONS(790), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, + [59465] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(798), 1, - anon_sym_await, - ACTIONS(800), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1047), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_type, + ACTIONS(2085), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1141), 1, - sym_primary_expression, - STATE(1400), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1618), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + STATE(620), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + ACTIONS(2081), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79624,49 +79404,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60048] = 16, - ACTIONS(782), 1, + [59544] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(792), 1, sym_string_start, ACTIONS(1244), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1011), 1, sym_string, - STATE(1139), 1, + STATE(1085), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79683,53 +79463,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60123] = 16, - ACTIONS(782), 1, - anon_sym_LPAREN, - ACTIONS(788), 1, - anon_sym_type, - ACTIONS(790), 1, - anon_sym_LBRACK, - ACTIONS(796), 1, + [59619] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(798), 1, - anon_sym_await, - ACTIONS(800), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1047), 1, + ACTIONS(2083), 1, + anon_sym_type, + ACTIONS(2085), 1, + anon_sym_await, + ACTIONS(2087), 1, + sym_identifier, + STATE(1007), 1, sym_string, - STATE(1134), 1, - sym_primary_expression, - STATE(1400), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1618), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + STATE(620), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + ACTIONS(2081), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79742,49 +79524,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60198] = 16, - ACTIONS(782), 1, + [59698] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1132), 1, + STATE(1038), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79801,49 +79583,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60273] = 16, - ACTIONS(782), 1, + [59773] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1131), 1, + STATE(1025), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79860,49 +79642,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60348] = 16, - ACTIONS(782), 1, + [59848] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1129), 1, + STATE(1027), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79919,49 +79701,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60423] = 16, - ACTIONS(689), 1, + [59923] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(989), 1, + STATE(977), 1, sym_string, - STATE(1038), 1, + STATE(1020), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79978,8 +79760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60498] = 18, - ACTIONS(318), 1, + [59998] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -79987,44 +79769,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2091), 1, - anon_sym_await, - ACTIONS(2093), 1, + ACTIONS(2089), 1, sym_identifier, - ACTIONS(2097), 1, + ACTIONS(2093), 1, anon_sym_type, - STATE(1032), 1, + ACTIONS(2095), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1559), 1, + STATE(1631), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1431), 2, + STATE(1480), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2095), 4, + ACTIONS(2091), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80039,49 +79821,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60577] = 16, - ACTIONS(689), 1, + [60077] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(989), 1, + STATE(977), 1, sym_string, - STATE(1013), 1, + STATE(1028), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80098,49 +79880,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60652] = 16, - ACTIONS(782), 1, + [60152] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(977), 1, sym_string, - STATE(1128), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80157,8 +79939,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60727] = 18, - ACTIONS(318), 1, + [60227] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -80166,44 +79948,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2099), 1, + ACTIONS(2089), 1, sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2093), 1, anon_sym_type, - ACTIONS(2105), 1, + ACTIONS(2095), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1557), 1, + STATE(1633), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1463), 2, + STATE(1480), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2101), 4, + ACTIONS(2091), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80218,108 +80000,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60806] = 16, - ACTIONS(689), 1, + [60306] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(989), 1, + STATE(977), 1, sym_string, - STATE(1007), 1, + STATE(1032), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(693), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(687), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1282), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [60881] = 16, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_type, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_await, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(978), 1, - sym_string, - STATE(980), 1, - sym_primary_expression, - STATE(1118), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(73), 2, - sym_ellipsis, - sym_float, - ACTIONS(67), 3, anon_sym_PLUS, - anon_sym_DASH, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80336,108 +80059,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60956] = 16, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, + [60381] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(672), 1, - anon_sym_await, - ACTIONS(1296), 1, - anon_sym_STAR, - STATE(978), 1, - sym_string, - STATE(985), 1, - sym_primary_expression, - STATE(1118), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(73), 2, - sym_ellipsis, - sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_TILDE, - ACTIONS(664), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1055), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [61031] = 16, - ACTIONS(75), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, - anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_type, - ACTIONS(668), 1, - anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, anon_sym_STAR, - STATE(978), 1, + STATE(977), 1, sym_string, - STATE(982), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80454,49 +80118,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61106] = 16, - ACTIONS(804), 1, + [60456] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(977), 1, sym_string, - STATE(1261), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80513,49 +80177,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61181] = 16, - ACTIONS(804), 1, + [60531] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1009), 1, sym_string, - STATE(1212), 1, + STATE(1124), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80572,49 +80236,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61256] = 16, - ACTIONS(75), 1, + [60606] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_type, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(994), 1, + STATE(1086), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80631,49 +80295,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61331] = 16, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, + [60681] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(978), 1, + STATE(1011), 1, sym_string, - STATE(996), 1, + STATE(1080), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80690,55 +80354,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61406] = 18, - ACTIONS(318), 1, + [60756] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(658), 1, + anon_sym_type, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2091), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(2097), 1, - anon_sym_type, - ACTIONS(2107), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1559), 1, + STATE(975), 1, sym_primary_expression, + STATE(1125), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1431), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2095), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80751,38 +80413,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61485] = 16, - ACTIONS(75), 1, + [60831] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(997), 1, + STATE(982), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -80793,7 +80455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80810,38 +80472,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61560] = 16, - ACTIONS(75), 1, + [60906] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(988), 1, + STATE(983), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -80852,7 +80514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80869,49 +80531,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61635] = 16, - ACTIONS(738), 1, + [60981] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1144), 1, + STATE(1226), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80928,49 +80590,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61710] = 16, - ACTIONS(689), 1, + [61056] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(989), 1, + STATE(968), 1, sym_string, - STATE(1005), 1, + STATE(984), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80987,49 +80649,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61785] = 16, - ACTIONS(689), 1, + [61131] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1152), 1, sym_string, - STATE(1002), 1, + STATE(1219), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81046,49 +80708,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61860] = 16, - ACTIONS(738), 1, + [61206] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1083), 1, + STATE(1207), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81105,49 +80767,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61935] = 16, - ACTIONS(738), 1, + [61281] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1084), 1, + STATE(1153), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81164,49 +80826,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62010] = 16, - ACTIONS(804), 1, + [61356] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1152), 1, sym_string, - STATE(1213), 1, + STATE(1230), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81223,49 +80885,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62085] = 16, - ACTIONS(689), 1, + [61431] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1034), 1, sym_string, - STATE(1022), 1, + STATE(1132), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81282,55 +80944,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62160] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [61506] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(734), 1, + anon_sym_type, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2105), 1, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(2109), 1, - sym_identifier, - ACTIONS(2113), 1, - anon_sym_type, - STATE(1032), 1, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(1240), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1555), 1, + STATE(1131), 1, sym_primary_expression, + STATE(1401), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1424), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2111), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(726), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81343,55 +81003,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62239] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [61581] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2115), 1, - sym_identifier, - ACTIONS(2119), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(2121), 1, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(746), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(1240), 1, + anon_sym_STAR, + STATE(1034), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1578), 1, + STATE(1130), 1, sym_primary_expression, + STATE(1401), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - STATE(1583), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2117), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(726), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81404,49 +81062,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62318] = 16, - ACTIONS(760), 1, + [61656] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(998), 1, - sym_string, STATE(1034), 1, + sym_string, + STATE(1120), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81463,49 +81121,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62393] = 16, - ACTIONS(804), 1, + [61731] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1034), 1, sym_string, - STATE(1214), 1, + STATE(1118), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81522,49 +81180,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62468] = 16, - ACTIONS(689), 1, + [61806] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1034), 1, sym_string, - STATE(1001), 1, + STATE(1088), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81581,49 +81239,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62543] = 16, - ACTIONS(689), 1, + [61881] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(695), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(697), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(707), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(984), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1034), 1, sym_string, - STATE(1042), 1, + STATE(1081), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1282), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81640,49 +81298,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62618] = 16, - ACTIONS(714), 1, + [61956] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1034), 1, sym_string, - STATE(1093), 1, + STATE(1079), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81699,49 +81357,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62693] = 16, - ACTIONS(804), 1, + [62031] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1152), 1, sym_string, - STATE(1189), 1, + STATE(1213), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81758,49 +81416,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62768] = 16, - ACTIONS(804), 1, + [62106] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(968), 1, sym_string, - STATE(1190), 1, + STATE(985), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81817,53 +81475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62843] = 16, - ACTIONS(804), 1, - anon_sym_LPAREN, - ACTIONS(810), 1, - anon_sym_type, - ACTIONS(812), 1, - anon_sym_LBRACK, - ACTIONS(818), 1, + [62181] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(820), 1, - anon_sym_await, - ACTIONS(822), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1057), 1, + ACTIONS(2097), 1, + sym_identifier, + ACTIONS(2101), 1, + anon_sym_type, + ACTIONS(2103), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1215), 1, - sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + STATE(1436), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + ACTIONS(2099), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -81876,55 +81536,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62918] = 18, - ACTIONS(318), 1, + [62260] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2127), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(2129), 1, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1562), 1, + STATE(976), 1, sym_primary_expression, + STATE(1125), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1277), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2125), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81937,49 +81595,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62997] = 16, - ACTIONS(714), 1, + [62335] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1152), 1, sym_string, - STATE(1092), 1, + STATE(1212), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81996,8 +81654,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63072] = 18, - ACTIONS(318), 1, + [62410] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -82005,44 +81663,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2131), 1, + ACTIONS(2071), 1, sym_identifier, - ACTIONS(2135), 1, + ACTIONS(2075), 1, anon_sym_type, - ACTIONS(2137), 1, + ACTIONS(2077), 1, anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1626), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1383), 2, + STATE(1237), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2133), 4, + ACTIONS(2073), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82057,8 +81715,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63151] = 18, - ACTIONS(318), 1, + [62489] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -82066,44 +81724,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2135), 1, + ACTIONS(2105), 1, + sym_identifier, + ACTIONS(2109), 1, anon_sym_type, - ACTIONS(2137), 1, + ACTIONS(2111), 1, anon_sym_await, - ACTIONS(2139), 1, - sym_identifier, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1578), 1, + STATE(1627), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1383), 2, + STATE(1629), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2133), 4, + ACTIONS(2107), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82118,49 +81776,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63230] = 16, - ACTIONS(714), 1, + [62568] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(987), 1, sym_string, - STATE(1150), 1, + STATE(1033), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82177,49 +81835,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63305] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [62643] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(804), 1, + anon_sym_LBRACK, + ACTIONS(808), 1, + anon_sym_LBRACE, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1152), 1, sym_string, - STATE(1119), 1, + STATE(1211), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82236,49 +81894,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63380] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [62718] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1011), 1, sym_string, - STATE(1120), 1, + STATE(1104), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82295,49 +81953,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63455] = 16, - ACTIONS(804), 1, + [62793] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1152), 1, sym_string, - STATE(1211), 1, + STATE(1210), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82354,49 +82012,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63530] = 16, - ACTIONS(804), 1, + [62868] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(810), 1, - anon_sym_type, - ACTIONS(812), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(818), 1, - anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(822), 1, - sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1007), 1, sym_string, - STATE(1216), 1, + STATE(1087), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82413,55 +82071,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63605] = 18, - ACTIONS(318), 1, + [62943] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(658), 1, + anon_sym_type, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2129), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(2141), 1, - sym_identifier, - ACTIONS(2145), 1, - anon_sym_type, - STATE(1032), 1, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1554), 1, + STATE(986), 1, sym_primary_expression, + STATE(1125), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1229), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2143), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82474,55 +82130,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63684] = 18, - ACTIONS(318), 1, + [63018] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(324), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(408), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2147), 1, - sym_identifier, - ACTIONS(2151), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(2153), 1, + ACTIONS(660), 1, + anon_sym_LBRACK, + ACTIONS(664), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1318), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1572), 1, + STATE(973), 1, sym_primary_expression, + STATE(1125), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1507), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2149), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82535,55 +82189,112 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63763] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [63093] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2155), 1, - sym_identifier, - ACTIONS(2159), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(2161), 1, + ACTIONS(692), 1, + anon_sym_LBRACK, + ACTIONS(696), 1, + anon_sym_LBRACE, + ACTIONS(700), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(976), 1, + anon_sym_STAR, + STATE(977), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1584), 1, + STATE(1040), 1, sym_primary_expression, + STATE(1218), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - STATE(1056), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, + ACTIONS(688), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + ACTIONS(682), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(2157), 4, + STATE(1258), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63168] = 16, + ACTIONS(752), 1, + anon_sym_LPAREN, + ACTIONS(758), 1, + anon_sym_type, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(768), 1, + anon_sym_await, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(1009), 1, + sym_string, + STATE(1056), 1, + sym_primary_expression, + STATE(1427), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(766), 2, + sym_ellipsis, + sym_float, + ACTIONS(762), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(750), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82596,8 +82307,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63842] = 18, - ACTIONS(318), 1, + [63243] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -82605,46 +82316,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2163), 1, - sym_identifier, - ACTIONS(2167), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(2169), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1577), 1, + STATE(1066), 1, sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1542), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2165), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -82657,49 +82366,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63921] = 16, - ACTIONS(738), 1, + [63318] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(756), 1, - sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(968), 1, sym_string, - STATE(1094), 1, + STATE(971), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82716,49 +82425,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63996] = 16, - ACTIONS(760), 1, + [63393] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_type, - ACTIONS(768), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1007), 1, sym_string, - STATE(1025), 1, + STATE(1059), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82775,8 +82484,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64071] = 18, - ACTIONS(318), 1, + [63468] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -82784,44 +82493,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2171), 1, + ACTIONS(2095), 1, + anon_sym_await, + ACTIONS(2113), 1, sym_identifier, - ACTIONS(2175), 1, + ACTIONS(2117), 1, anon_sym_type, - ACTIONS(2177), 1, - anon_sym_await, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1556), 1, + STATE(1631), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(639), 2, + STATE(1350), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2173), 4, + ACTIONS(2115), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -82836,49 +82545,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64150] = 16, - ACTIONS(738), 1, + [63547] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1152), 1, sym_string, - STATE(1101), 1, + STATE(1197), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82895,49 +82604,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64225] = 16, - ACTIONS(804), 1, + [63622] = 16, + ACTIONS(796), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(802), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(804), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(808), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(812), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(814), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1288), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1152), 1, sym_string, - STATE(1218), 1, + STATE(1209), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1484), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(810), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(806), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(800), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(794), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1477), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82954,49 +82663,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64300] = 16, - ACTIONS(760), 1, + [63697] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(998), 1, + STATE(968), 1, sym_string, - STATE(1023), 1, + STATE(974), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83013,49 +82722,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64375] = 16, - ACTIONS(738), 1, + [63772] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(1009), 1, sym_string, - STATE(1104), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83072,8 +82781,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64450] = 16, - ACTIONS(318), 1, + [63847] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -83081,44 +82790,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_type, - ACTIONS(685), 1, - anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(2103), 1, + anon_sym_await, + ACTIONS(2119), 1, + sym_identifier, + ACTIONS(2123), 1, + anon_sym_type, + STATE(1007), 1, sym_string, - STATE(1145), 1, - sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1407), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + ACTIONS(2121), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83131,49 +82842,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64525] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [63926] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(738), 1, + anon_sym_LBRACK, + ACTIONS(742), 1, + anon_sym_LBRACE, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(748), 1, + sym_string_start, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1034), 1, sym_string, - STATE(1146), 1, + STATE(1141), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83190,53 +82901,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64600] = 16, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(744), 1, - anon_sym_type, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + [64001] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(754), 1, - anon_sym_await, - ACTIONS(756), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1044), 1, + ACTIONS(2125), 1, + sym_identifier, + ACTIONS(2129), 1, + anon_sym_type, + ACTIONS(2131), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1112), 1, - sym_primary_expression, - STATE(1300), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1627), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(1359), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + ACTIONS(2127), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83249,49 +82962,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64675] = 16, - ACTIONS(804), 1, + [64080] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(810), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(812), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(818), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(822), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1304), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(1057), 1, + STATE(1034), 1, sym_string, - STATE(1210), 1, + STATE(1142), 1, sym_primary_expression, - STATE(1495), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(816), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(814), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(808), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(802), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1452), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83308,8 +83021,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64750] = 18, - ACTIONS(318), 1, + [64155] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -83317,46 +83030,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2103), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(2105), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(2179), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1557), 1, + STATE(1055), 1, sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1463), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2101), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -83369,56 +83080,54 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64829] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [64230] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2175), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(2177), 1, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(2181), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(1244), 1, + anon_sym_STAR, + STATE(1011), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1556), 1, + STATE(1105), 1, sym_primary_expression, + STATE(1310), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - STATE(639), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2173), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, + ACTIONS(772), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1279), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, sym_list, sym_set, sym_tuple, @@ -83430,49 +83139,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64908] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [64305] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(782), 1, + anon_sym_LBRACK, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1011), 1, sym_string, - STATE(1147), 1, + STATE(1110), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83489,49 +83198,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64983] = 16, - ACTIONS(760), 1, + [64380] = 16, + ACTIONS(728), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(734), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(738), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(742), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(746), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(748), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1240), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1034), 1, sym_string, - STATE(1019), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1401), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(744), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(740), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(732), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(726), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1303), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83548,53 +83257,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65058] = 16, - ACTIONS(738), 1, - anon_sym_LPAREN, - ACTIONS(744), 1, - anon_sym_type, - ACTIONS(746), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, + [64455] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(754), 1, - anon_sym_await, - ACTIONS(756), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1044), 1, + ACTIONS(2093), 1, + anon_sym_type, + ACTIONS(2095), 1, + anon_sym_await, + ACTIONS(2133), 1, + sym_identifier, + STATE(1007), 1, sym_string, - STATE(1073), 1, - sym_primary_expression, - STATE(1300), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1633), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + STATE(1480), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + ACTIONS(2091), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83607,49 +83318,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65133] = 16, - ACTIONS(760), 1, + [64534] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_type, - ACTIONS(768), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(774), 1, - anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(778), 1, - sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1007), 1, sym_string, - STATE(1018), 1, + STATE(1082), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83666,49 +83377,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65208] = 16, - ACTIONS(760), 1, + [64609] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(998), 1, + STATE(987), 1, sym_string, - STATE(1016), 1, + STATE(1026), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -83725,53 +83436,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65283] = 16, - ACTIONS(760), 1, - anon_sym_LPAREN, - ACTIONS(766), 1, - anon_sym_type, - ACTIONS(768), 1, - anon_sym_LBRACK, - ACTIONS(774), 1, + [64684] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(776), 1, - anon_sym_await, - ACTIONS(778), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(998), 1, + ACTIONS(2135), 1, + sym_identifier, + ACTIONS(2139), 1, + anon_sym_type, + ACTIONS(2141), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1015), 1, - sym_primary_expression, - STATE(1239), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + STATE(1135), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + ACTIONS(2137), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83784,8 +83497,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65358] = 18, - ACTIONS(318), 1, + [64763] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -83793,44 +83506,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - ACTIONS(2099), 1, - sym_identifier, - ACTIONS(2103), 1, + ACTIONS(2129), 1, anon_sym_type, - ACTIONS(2105), 1, + ACTIONS(2131), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(2143), 1, + sym_identifier, + STATE(1007), 1, sym_string, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, - STATE(1555), 1, + STATE(1627), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1463), 2, + STATE(1359), 2, sym_attribute, sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, ACTIONS(320), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(2101), 4, + ACTIONS(2127), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -83845,8 +83558,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65437] = 16, - ACTIONS(318), 1, + [64842] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -83854,44 +83567,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, - anon_sym_type, - ACTIONS(685), 1, - anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + ACTIONS(2077), 1, + anon_sym_await, + ACTIONS(2145), 1, + sym_identifier, + ACTIONS(2149), 1, + anon_sym_type, + STATE(1007), 1, sym_string, - STATE(1148), 1, - sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1257), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + ACTIONS(2147), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83904,8 +83619,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65512] = 16, - ACTIONS(318), 1, + [64921] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -83913,44 +83628,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(2151), 1, + sym_identifier, + ACTIONS(2155), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(2157), 1, anon_sym_await, - ACTIONS(1370), 1, - anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1151), 1, - sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1634), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1500), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + ACTIONS(2153), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -83963,49 +83680,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65587] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [65000] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(724), 1, + sym_string_start, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(987), 1, sym_string, - STATE(1152), 1, + STATE(1002), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84022,49 +83739,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65662] = 16, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [65075] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(714), 1, + anon_sym_LBRACK, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(724), 1, + sym_string_start, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(987), 1, sym_string, - STATE(1153), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84081,8 +83798,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65737] = 16, - ACTIONS(318), 1, + [65150] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -84090,44 +83807,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(2139), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(2141), 1, anon_sym_await, - ACTIONS(1370), 1, - anon_sym_STAR, - STATE(1032), 1, + ACTIONS(2159), 1, + sym_identifier, + STATE(1007), 1, sym_string, - STATE(1154), 1, - sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + STATE(1135), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(320), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1365), 16, + ACTIONS(2137), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -84140,49 +83859,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65812] = 16, - ACTIONS(760), 1, + [65229] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1009), 1, sym_string, - STATE(1012), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84199,49 +83918,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65887] = 16, - ACTIONS(760), 1, + [65304] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1009), 1, sym_string, - STATE(1011), 1, + STATE(1074), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84258,49 +83977,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65962] = 16, - ACTIONS(760), 1, + [65379] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(998), 1, + STATE(1009), 1, sym_string, - STATE(1010), 1, + STATE(1073), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84317,49 +84036,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66037] = 16, - ACTIONS(760), 1, + [65454] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(766), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(768), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(774), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(778), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1274), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(998), 1, - sym_string, STATE(1009), 1, + sym_string, + STATE(1072), 1, sym_primary_expression, - STATE(1239), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(772), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(770), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(764), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(758), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1193), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84376,49 +84095,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66112] = 16, - ACTIONS(714), 1, + [65529] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1009), 1, sym_string, - STATE(1137), 1, + STATE(1071), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84435,55 +84154,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66187] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [65604] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(412), 1, - anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2159), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(2161), 1, + ACTIONS(760), 1, + anon_sym_LBRACK, + ACTIONS(764), 1, + anon_sym_LBRACE, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(2183), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(1312), 1, + anon_sym_STAR, + STATE(1009), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1584), 1, + STATE(1070), 1, sym_primary_expression, + STATE(1427), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - STATE(1056), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2157), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(750), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -84496,53 +84213,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66266] = 16, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(720), 1, - anon_sym_type, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [65679] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(732), 1, - anon_sym_await, - ACTIONS(734), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1024), 1, + ACTIONS(2161), 1, + sym_identifier, + ACTIONS(2165), 1, + anon_sym_type, + ACTIONS(2167), 1, + anon_sym_await, + STATE(1007), 1, sym_string, - STATE(1125), 1, - sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + STATE(1607), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + ACTIONS(2163), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -84555,49 +84274,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66341] = 16, - ACTIONS(738), 1, + [65758] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1071), 1, + STATE(1022), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84614,49 +84333,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66416] = 16, - ACTIONS(714), 1, + [65833] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(792), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1011), 1, sym_string, - STATE(1124), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84673,49 +84392,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66491] = 16, - ACTIONS(782), 1, + [65908] = 16, + ACTIONS(752), 1, anon_sym_LPAREN, - ACTIONS(788), 1, + ACTIONS(758), 1, anon_sym_type, - ACTIONS(790), 1, + ACTIONS(760), 1, anon_sym_LBRACK, - ACTIONS(796), 1, + ACTIONS(764), 1, anon_sym_LBRACE, - ACTIONS(798), 1, + ACTIONS(768), 1, anon_sym_await, - ACTIONS(800), 1, + ACTIONS(770), 1, sym_string_start, - ACTIONS(1244), 1, + ACTIONS(1312), 1, anon_sym_STAR, - STATE(1047), 1, + STATE(1009), 1, sym_string, - STATE(1064), 1, + STATE(1068), 1, sym_primary_expression, - STATE(1400), 1, + STATE(1427), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(794), 2, + ACTIONS(766), 2, sym_ellipsis, sym_float, - ACTIONS(792), 3, - anon_sym_PLUS, + ACTIONS(762), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(786), 4, + ACTIONS(756), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(780), 5, + ACTIONS(750), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1291), 16, + STATE(1304), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84732,49 +84451,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66566] = 16, - ACTIONS(714), 1, + [65983] = 16, + ACTIONS(684), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(690), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(692), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(696), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(700), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(702), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(976), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(977), 1, sym_string, - STATE(1077), 1, + STATE(1021), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1218), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(698), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(694), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(688), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(682), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1258), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84791,38 +84510,38 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66641] = 16, - ACTIONS(75), 1, + [66058] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(652), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(658), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(660), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(664), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1318), 1, anon_sym_STAR, - STATE(978), 1, + STATE(968), 1, sym_string, - STATE(986), 1, + STATE(988), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1125), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(65), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(656), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -84833,7 +84552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1077), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84850,43 +84569,43 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66716] = 16, - ACTIONS(689), 1, + [66133] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(695), 1, - anon_sym_type, - ACTIONS(697), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(705), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(984), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(989), 1, + STATE(1007), 1, sym_string, - STATE(1008), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1272), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(701), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(699), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(693), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(687), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, @@ -84909,49 +84628,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66791] = 16, - ACTIONS(738), 1, + [66208] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1060), 1, + STATE(1013), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -84968,53 +84687,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66866] = 16, - ACTIONS(714), 1, - anon_sym_LPAREN, - ACTIONS(720), 1, - anon_sym_type, - ACTIONS(724), 1, - anon_sym_LBRACK, - ACTIONS(730), 1, + [66283] = 18, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(732), 1, - anon_sym_await, - ACTIONS(734), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(408), 1, + anon_sym_LPAREN, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1024), 1, + ACTIONS(2101), 1, + anon_sym_type, + ACTIONS(2103), 1, + anon_sym_await, + ACTIONS(2169), 1, + sym_identifier, + STATE(1007), 1, sym_string, - STATE(1075), 1, - sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, + STATE(1647), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + STATE(1436), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, - anon_sym_print, - anon_sym_match, - anon_sym_async, - anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(320), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + ACTIONS(2099), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -85027,49 +84748,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66941] = 16, - ACTIONS(75), 1, + [66362] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(324), 1, sym_string_start, - ACTIONS(660), 1, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(666), 1, - anon_sym_type, - ACTIONS(668), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(978), 1, + STATE(1007), 1, sym_string, - STATE(983), 1, + STATE(1049), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85086,8 +84807,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67016] = 18, - ACTIONS(318), 1, + [66437] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -85095,46 +84816,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2123), 1, - sym_identifier, - ACTIONS(2127), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(2129), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(1032), 1, + ACTIONS(1414), 1, + anon_sym_STAR, + STATE(1007), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1554), 1, + STATE(1051), 1, sym_primary_expression, + STATE(1323), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - STATE(1277), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2125), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(320), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -85147,55 +84866,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67095] = 18, - ACTIONS(318), 1, - anon_sym_LBRACE, - ACTIONS(324), 1, - sym_string_start, - ACTIONS(408), 1, + [66512] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(412), 1, + ACTIONS(712), 1, + anon_sym_type, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(1370), 1, - anon_sym_STAR, - ACTIONS(2091), 1, + ACTIONS(718), 1, + anon_sym_LBRACE, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(2097), 1, - anon_sym_type, - ACTIONS(2107), 1, - sym_identifier, - STATE(1032), 1, + ACTIONS(724), 1, + sym_string_start, + ACTIONS(1228), 1, + anon_sym_STAR, + STATE(987), 1, sym_string, - STATE(1324), 1, - sym_list_splat_pattern, - STATE(1577), 1, + STATE(1042), 1, sym_primary_expression, + STATE(1214), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - STATE(1431), 2, - sym_attribute, - sym_subscript, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(320), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(2095), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - STATE(1365), 14, + ACTIONS(704), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -85208,49 +84925,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67174] = 16, - ACTIONS(75), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(660), 1, + [66587] = 16, + ACTIONS(774), 1, anon_sym_LPAREN, - ACTIONS(666), 1, + ACTIONS(780), 1, anon_sym_type, - ACTIONS(668), 1, + ACTIONS(782), 1, anon_sym_LBRACK, - ACTIONS(672), 1, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(790), 1, anon_sym_await, - ACTIONS(1296), 1, + ACTIONS(792), 1, + sym_string_start, + ACTIONS(1244), 1, anon_sym_STAR, - STATE(978), 1, + STATE(1011), 1, sym_string, - STATE(987), 1, + STATE(1117), 1, sym_primary_expression, - STATE(1118), 1, + STATE(1310), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(73), 2, + ACTIONS(788), 2, sym_ellipsis, sym_float, - ACTIONS(67), 3, - anon_sym_PLUS, + ACTIONS(784), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 4, + ACTIONS(778), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(772), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1055), 16, + STATE(1279), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85267,8 +84984,8 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67249] = 16, - ACTIONS(318), 1, + [66662] = 16, + ACTIONS(307), 1, anon_sym_LBRACE, ACTIONS(324), 1, sym_string_start, @@ -85276,29 +84993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(683), 1, + ACTIONS(675), 1, anon_sym_type, - ACTIONS(685), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1370), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1032), 1, + STATE(1007), 1, sym_string, - STATE(1130), 1, + STATE(1052), 1, sym_primary_expression, - STATE(1324), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(316), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(310), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(681), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, @@ -85309,7 +85026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1365), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85326,49 +85043,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67324] = 16, - ACTIONS(714), 1, + [66737] = 18, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(720), 1, + ACTIONS(412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, + anon_sym_STAR, + ACTIONS(2097), 1, + sym_identifier, + ACTIONS(2101), 1, anon_sym_type, - ACTIONS(724), 1, + ACTIONS(2103), 1, + anon_sym_await, + STATE(1007), 1, + sym_string, + STATE(1323), 1, + sym_list_splat_pattern, + STATE(1647), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(318), 2, + sym_ellipsis, + sym_float, + STATE(1436), 2, + sym_attribute, + sym_subscript, + ACTIONS(312), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(320), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(2099), 4, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + STATE(1282), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [66816] = 16, + ACTIONS(706), 1, + anon_sym_LPAREN, + ACTIONS(712), 1, + anon_sym_type, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(730), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(734), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(987), 1, sym_string, - STATE(1072), 1, + STATE(996), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85385,49 +85163,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67399] = 16, - ACTIONS(714), 1, + [66891] = 16, + ACTIONS(307), 1, + anon_sym_LBRACE, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(408), 1, anon_sym_LPAREN, - ACTIONS(720), 1, - anon_sym_type, - ACTIONS(724), 1, + ACTIONS(412), 1, anon_sym_LBRACK, - ACTIONS(730), 1, - anon_sym_LBRACE, - ACTIONS(732), 1, + ACTIONS(675), 1, + anon_sym_type, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(734), 1, - sym_string_start, - ACTIONS(1256), 1, + ACTIONS(1414), 1, anon_sym_STAR, - STATE(1024), 1, + STATE(1007), 1, sym_string, - STATE(1136), 1, + STATE(1053), 1, sym_primary_expression, - STATE(1420), 1, + STATE(1323), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(728), 2, + ACTIONS(318), 2, sym_ellipsis, sym_float, - ACTIONS(726), 3, - anon_sym_PLUS, + ACTIONS(312), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(718), 4, + ACTIONS(673), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(712), 5, + ACTIONS(320), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1298), 16, + STATE(1282), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85444,49 +85222,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67474] = 16, - ACTIONS(738), 1, + [66966] = 16, + ACTIONS(706), 1, anon_sym_LPAREN, - ACTIONS(744), 1, + ACTIONS(712), 1, anon_sym_type, - ACTIONS(746), 1, + ACTIONS(714), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(718), 1, anon_sym_LBRACE, - ACTIONS(754), 1, + ACTIONS(722), 1, anon_sym_await, - ACTIONS(756), 1, + ACTIONS(724), 1, sym_string_start, - ACTIONS(1308), 1, + ACTIONS(1228), 1, anon_sym_STAR, - STATE(1044), 1, + STATE(987), 1, sym_string, - STATE(1059), 1, + STATE(1004), 1, sym_primary_expression, - STATE(1300), 1, + STATE(1214), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(750), 2, + ACTIONS(720), 2, sym_ellipsis, sym_float, - ACTIONS(748), 3, - anon_sym_PLUS, + ACTIONS(716), 3, anon_sym_DASH, + anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(742), 4, + ACTIONS(710), 4, anon_sym_print, anon_sym_match, anon_sym_async, anon_sym_exec, - ACTIONS(736), 5, + ACTIONS(704), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1415), 16, + STATE(1235), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -85503,84 +85281,22 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [67549] = 20, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - ACTIONS(2199), 1, - anon_sym_EQ, - ACTIONS(2201), 1, - anon_sym_LBRACK, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, - anon_sym_PIPE, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, - ACTIONS(2217), 1, - anon_sym_is, - STATE(1518), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2191), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2215), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1069), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2203), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2195), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2185), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67631] = 5, - ACTIONS(81), 1, + [67041] = 5, + ACTIONS(2175), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(979), 2, + STATE(967), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, + ACTIONS(2173), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 31, + ACTIONS(2171), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -85595,14 +85311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85612,22 +85328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67683] = 5, + [67093] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(977), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 31, + ACTIONS(1526), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -85642,14 +85358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85659,128 +85375,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67735] = 5, - ACTIONS(2227), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(979), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2223), 31, - sym__newline, - anon_sym_SEMI, + [67145] = 20, + ACTIONS(2180), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2182), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2190), 1, anon_sym_STAR_STAR, + ACTIONS(2192), 1, + anon_sym_EQ, + ACTIONS(2194), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2200), 1, anon_sym_PIPE, + ACTIONS(2202), 1, + anon_sym_not, + ACTIONS(2204), 1, anon_sym_AMP, + ACTIONS(2206), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, + ACTIONS(2210), 1, anon_sym_is, - [67787] = 12, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - ACTIONS(2201), 1, - anon_sym_LBRACK, + STATE(1581), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2186), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2232), 3, + ACTIONS(2188), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2178), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [67227] = 5, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(967), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 20, + ACTIONS(2212), 31, sym__newline, anon_sym_SEMI, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67852] = 8, - ACTIONS(2187), 1, + [67279] = 8, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1069), 2, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(2218), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 27, + ACTIONS(2216), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -85791,14 +85516,14 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85808,191 +85533,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [67909] = 14, - ACTIONS(2187), 1, + [67336] = 20, + ACTIONS(2192), 1, + anon_sym_EQ, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, - ACTIONS(2211), 1, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2240), 1, + anon_sym_not, + ACTIONS(2242), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2244), 1, anon_sym_CARET, + ACTIONS(2248), 1, + anon_sym_is, + STATE(1596), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2226), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2236), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + ACTIONS(2246), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2234), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2232), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2230), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2228), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [67978] = 8, - ACTIONS(2187), 1, + ACTIONS(2178), 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, + [67417] = 15, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, + ACTIONS(2200), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1069), 2, + ACTIONS(2184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2186), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2198), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2240), 5, - anon_sym_STAR, + ACTIONS(2196), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2252), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 27, + ACTIONS(2250), 17, 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_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68035] = 5, - ACTIONS(707), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(991), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2219), 30, + [67488] = 15, + ACTIONS(2180), 1, anon_sym_DOT, + ACTIONS(2182), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2190), 1, anon_sym_STAR_STAR, + ACTIONS(2194), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2200), 1, anon_sym_PIPE, + ACTIONS(2204), 1, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [68086] = 13, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - ACTIONS(2201), 1, - anon_sym_LBRACK, - ACTIONS(2213), 1, + ACTIONS(2206), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2186), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2232), 3, + ACTIONS(2256), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 19, + ACTIONS(2254), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -86004,53 +85700,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68153] = 15, - ACTIONS(2187), 1, + [67559] = 12, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, - ACTIONS(2209), 1, - anon_sym_PIPE, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2186), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2244), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2242), 17, + ACTIONS(2216), 20, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -86059,54 +85747,57 @@ static const uint16_t ts_small_parse_table[] = { 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_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68224] = 15, - ACTIONS(2187), 1, + [67624] = 15, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, - ACTIONS(2209), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2211), 1, + ACTIONS(2204), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2206), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2186), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2248), 3, + ACTIONS(2260), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2246), 17, + ACTIONS(2258), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -86124,46 +85815,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68295] = 8, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2189), 1, - anon_sym_LPAREN, - ACTIONS(2197), 1, - anon_sym_STAR_STAR, - ACTIONS(2201), 1, - anon_sym_LBRACK, + [67695] = 5, + ACTIONS(702), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1069), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + STATE(990), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(1526), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86173,41 +85860,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68352] = 5, - ACTIONS(707), 1, + sym_type_conversion, + [67746] = 5, + ACTIONS(2262), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(984), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, + ACTIONS(2173), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 30, + ACTIONS(2171), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86217,104 +85907,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [68403] = 20, - ACTIONS(2199), 1, - anon_sym_EQ, - ACTIONS(2250), 1, + [67797] = 20, + ACTIONS(2192), 1, + anon_sym_as, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2266), 1, - anon_sym_not, - ACTIONS(2270), 1, + ACTIONS(2283), 1, anon_sym_PIPE, - ACTIONS(2272), 1, + ACTIONS(2285), 1, + anon_sym_not, + ACTIONS(2287), 1, anon_sym_AMP, - ACTIONS(2274), 1, + ACTIONS(2289), 1, anon_sym_CARET, - ACTIONS(2278), 1, + ACTIONS(2293), 1, anon_sym_is, - STATE(1534), 1, + STATE(1594), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2271), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, + ACTIONS(2281), 2, anon_sym_DASH, - ACTIONS(2276), 2, + anon_sym_PLUS, + ACTIONS(2291), 2, anon_sym_LT, anon_sym_GT, - STATE(1223), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2264), 3, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2258), 6, + ACTIONS(2273), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 8, + ACTIONS(2178), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [68484] = 5, - ACTIONS(2280), 1, - sym_string_start, + [67878] = 8, + ACTIONS(2180), 1, + anon_sym_DOT, + ACTIONS(2182), 1, + anon_sym_LPAREN, + ACTIONS(2190), 1, + anon_sym_STAR_STAR, + ACTIONS(2194), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(991), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, + STATE(1148), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2295), 27, + 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86324,24 +86017,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [68535] = 5, - ACTIONS(2283), 1, + [67935] = 5, + ACTIONS(724), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(992), 2, + STATE(978), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, + ACTIONS(2214), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 30, + ACTIONS(2212), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86354,14 +86045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86371,254 +86063,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68586] = 10, - ACTIONS(2187), 1, + [67986] = 13, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1069), 2, + ACTIONS(2186), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2198), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 24, + ACTIONS(2216), 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_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68647] = 8, - ACTIONS(2187), 1, + [68053] = 14, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, + ACTIONS(2204), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1069), 2, + ACTIONS(2184), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2186), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2198), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 5, - anon_sym_STAR, + ACTIONS(2196), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2218), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 27, + ACTIONS(2216), 18, 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_AT, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68704] = 20, - ACTIONS(2199), 1, - anon_sym_as, - ACTIONS(2286), 1, + [68122] = 10, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, - ACTIONS(2302), 1, - anon_sym_not, - ACTIONS(2306), 1, - anon_sym_PIPE, - ACTIONS(2308), 1, - anon_sym_AMP, - ACTIONS(2310), 1, - anon_sym_CARET, - ACTIONS(2314), 1, - anon_sym_is, - STATE(1531), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2312), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1205), 2, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2294), 6, + ACTIONS(2218), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2216), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [68785] = 15, - ACTIONS(2187), 1, + anon_sym_is, + [68183] = 8, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, - ACTIONS(2209), 1, - anon_sym_PIPE, - ACTIONS(2211), 1, - anon_sym_AMP, - ACTIONS(2213), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2193), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1069), 2, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2318), 3, + ACTIONS(2218), 5, + anon_sym_STAR, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2316), 17, + ACTIONS(2216), 27, 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_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_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68856] = 11, - ACTIONS(2187), 1, + [68240] = 11, + ACTIONS(2180), 1, anon_sym_DOT, - ACTIONS(2189), 1, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2201), 1, + ACTIONS(2194), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1069), 2, + anon_sym_PLUS, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 22, + ACTIONS(2216), 22, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -86628,10 +86311,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86641,22 +86324,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [68919] = 5, - ACTIONS(778), 1, + [68303] = 5, + ACTIONS(724), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(999), 2, + STATE(981), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 30, + ACTIONS(1526), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -86669,14 +86352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86686,43 +86370,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [68970] = 5, - ACTIONS(778), 1, - sym_string_start, + [68354] = 8, + ACTIONS(2180), 1, + anon_sym_DOT, + ACTIONS(2182), 1, + anon_sym_LPAREN, + ACTIONS(2190), 1, + anon_sym_STAR_STAR, + ACTIONS(2194), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(992), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, - anon_sym_as, + STATE(1148), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2299), 27, + 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_async, - 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86732,23 +86419,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69021] = 3, + [68411] = 5, + ACTIONS(2303), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, + STATE(989), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2173), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(2171), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -86759,14 +86446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86776,46 +86464,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69067] = 11, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, + sym_type_conversion, + [68462] = 5, + ACTIONS(702), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + STATE(989), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2268), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 21, + ACTIONS(2212), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86825,45 +86510,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [69129] = 8, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, + [68513] = 5, + ACTIONS(792), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + STATE(992), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 26, + ACTIONS(2212), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86873,40 +86556,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69185] = 3, + [68563] = 5, + ACTIONS(2306), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 6, + STATE(992), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2173), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 31, + ACTIONS(2171), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86916,159 +86601,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69231] = 20, - ACTIONS(2199), 1, - anon_sym_EQ, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2340), 1, - anon_sym_not, - ACTIONS(2344), 1, - anon_sym_PIPE, - ACTIONS(2346), 1, - anon_sym_AMP, - ACTIONS(2348), 1, - anon_sym_CARET, - ACTIONS(2352), 1, - anon_sym_is, - STATE(1526), 1, - aux_sym_comparison_operator_repeat1, + [68613] = 5, + ACTIONS(324), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2350), 2, anon_sym_LT, anon_sym_GT, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2332), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2185), 7, - anon_sym_RPAREN, + ACTIONS(2212), 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_and, - anon_sym_or, - [69311] = 15, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2262), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2274), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2254), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2268), 2, anon_sym_PLUS, - anon_sym_DASH, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2244), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2242), 16, - 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69381] = 5, - ACTIONS(734), 1, + [68663] = 5, + ACTIONS(2309), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1037), 2, + STATE(994), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, - anon_sym_as, + ACTIONS(2173), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 29, + ACTIONS(2171), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87078,133 +86691,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69431] = 10, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, + [68713] = 5, + ACTIONS(2312), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2173), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 23, + ACTIONS(2171), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69491] = 15, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2274), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2254), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2268), 2, anon_sym_PLUS, - anon_sym_DASH, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2248), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 16, - 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69561] = 8, - ACTIONS(2286), 1, + [68763] = 8, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(2218), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 26, + ACTIONS(2216), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -87213,14 +86766,15 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87230,48 +86784,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69617] = 11, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [68819] = 5, + ACTIONS(770), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + STATE(994), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 21, + ACTIONS(2212), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87281,100 +86829,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69679] = 15, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, + [68869] = 19, + ACTIONS(2182), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2190), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, + ACTIONS(2200), 1, anon_sym_PIPE, - ACTIONS(2308), 1, + ACTIONS(2202), 1, + anon_sym_not, + ACTIONS(2204), 1, anon_sym_AMP, - ACTIONS(2310), 1, + ACTIONS(2206), 1, anon_sym_CARET, + ACTIONS(2210), 1, + anon_sym_is, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LBRACK, + STATE(1581), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2184), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, + ACTIONS(2186), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, + ACTIONS(2198), 2, anon_sym_DASH, - STATE(1205), 2, + anon_sym_PLUS, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1148), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2300), 3, + ACTIONS(2196), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2318), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2316), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + ACTIONS(2188), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [69749] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + ACTIONS(2178), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [68947] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, - anon_sym_as, + ACTIONS(2321), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 26, + ACTIONS(2319), 32, + 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_async, - 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87384,97 +86931,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [69805] = 14, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_STAR_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2274), 1, - anon_sym_CARET, + [68993] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + ACTIONS(279), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [69873] = 5, - ACTIONS(324), 1, - sym_string_start, + [69041] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 29, + ACTIONS(277), 30, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87484,33 +87019,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [69923] = 10, - ACTIONS(2286), 1, + [69089] = 10, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1205), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2300), 3, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 23, + ACTIONS(2216), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -87518,111 +87053,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, anon_sym_RBRACE, - [69983] = 14, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2308), 1, - anon_sym_AMP, - ACTIONS(2310), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2304), 2, anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [70051] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [69149] = 5, + ACTIONS(2323), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + STATE(1003), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2173), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(2171), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87632,125 +87114,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70099] = 13, - ACTIONS(2286), 1, + [69199] = 11, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2310), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2290), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, + ACTIONS(2281), 2, anon_sym_DASH, - STATE(1205), 2, + anon_sym_PLUS, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2300), 3, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, + ACTIONS(2216), 21, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, anon_sym_RBRACE, - [70165] = 12, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 19, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [70229] = 4, - ACTIONS(292), 1, + [69261] = 4, + ACTIONS(1533), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1531), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1526), 30, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87764,14 +87192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87781,42 +87209,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70277] = 5, + [69309] = 20, + ACTIONS(2192), 1, + anon_sym_EQ, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_PIPE, + ACTIONS(2346), 1, + anon_sym_not, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, ACTIONS(2354), 1, + anon_sym_is, + STATE(1591), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2352), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2340), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2334), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2178), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [69389] = 5, + ACTIONS(324), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1021), 2, + STATE(993), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87826,354 +87314,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70327] = 15, - ACTIONS(2250), 1, + [69439] = 20, + ACTIONS(2192), 1, + anon_sym_EQ, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, - ACTIONS(2270), 1, + ACTIONS(2374), 1, anon_sym_PIPE, - ACTIONS(2272), 1, + ACTIONS(2376), 1, + anon_sym_not, + ACTIONS(2378), 1, anon_sym_AMP, - ACTIONS(2274), 1, + ACTIONS(2380), 1, anon_sym_CARET, + ACTIONS(2384), 1, + anon_sym_is, + STATE(1584), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, + ACTIONS(2372), 2, anon_sym_DASH, - STATE(1223), 2, + anon_sym_PLUS, + ACTIONS(2382), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2264), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2318), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2316), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2364), 6, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70397] = 15, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_PIPE, - ACTIONS(2308), 1, - anon_sym_AMP, - ACTIONS(2310), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2248), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 16, + ACTIONS(2178), 7, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, + anon_sym_else, anon_sym_and, anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [70467] = 5, - ACTIONS(734), 1, + [69519] = 5, + ACTIONS(770), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, + STATE(997), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, - anon_sym_as, + ACTIONS(1531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [70517] = 15, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2306), 1, - anon_sym_PIPE, - ACTIONS(2308), 1, anon_sym_AMP, - ACTIONS(2310), 1, anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2290), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2292), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2304), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2244), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2300), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2242), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [70587] = 20, - ACTIONS(2199), 1, + [69569] = 20, + ACTIONS(2192), 1, anon_sym_as, - ACTIONS(2357), 1, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_not, - ACTIONS(2377), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2379), 1, + ACTIONS(2406), 1, + anon_sym_not, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2381), 1, + ACTIONS(2410), 1, anon_sym_CARET, - ACTIONS(2385), 1, + ACTIONS(2414), 1, anon_sym_is, - STATE(1540), 1, + STATE(1608), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2402), 2, anon_sym_DASH, - ACTIONS(2383), 2, + anon_sym_PLUS, + ACTIONS(2412), 2, anon_sym_LT, anon_sym_GT, - STATE(1432), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2371), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2365), 6, + ACTIONS(2394), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 7, - anon_sym_RPAREN, + ACTIONS(2178), 7, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - [70667] = 3, + [69649] = 5, + ACTIONS(792), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 6, + STATE(991), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 31, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [70713] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1545), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1540), 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, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88183,18 +87524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70761] = 3, + [69699] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 6, + ACTIONS(1651), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 31, + ACTIONS(1649), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88207,14 +87548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88224,79 +87566,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [70807] = 19, - ACTIONS(2189), 1, + [69745] = 15, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2197), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2209), 1, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, anon_sym_PIPE, - ACTIONS(2211), 1, + ACTIONS(2287), 1, anon_sym_AMP, - ACTIONS(2213), 1, + ACTIONS(2289), 1, anon_sym_CARET, - ACTIONS(2217), 1, - anon_sym_is, - ACTIONS(2387), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_LBRACK, - STATE(1518), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2191), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2193), 2, + ACTIONS(2271), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2207), 2, - anon_sym_PLUS, + ACTIONS(2281), 2, anon_sym_DASH, - ACTIONS(2215), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1069), 2, + anon_sym_PLUS, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2203), 3, + ACTIONS(2260), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2195), 6, + ACTIONS(2258), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [70885] = 3, + anon_sym_is, + [69815] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 6, + ACTIONS(1651), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 31, + ACTIONS(1649), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88309,14 +87646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88326,44 +87664,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [70931] = 5, - ACTIONS(324), 1, - sym_string_start, + [69861] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1014), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, + ACTIONS(1586), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(1584), 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_async, + 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88373,28 +87707,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [70981] = 8, - ACTIONS(2286), 1, + sym_type_conversion, + [69907] = 8, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2296), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2298), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(2218), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 26, + ACTIONS(2216), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88403,14 +87738,15 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88420,29 +87756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [71037] = 8, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_LPAREN, - ACTIONS(2296), 1, - anon_sym_STAR_STAR, - ACTIONS(2298), 1, - anon_sym_LBRACK, + [69963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1205), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2240), 5, + ACTIONS(1586), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 26, + ACTIONS(1584), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -88450,15 +87777,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88468,43 +87798,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [71093] = 5, - ACTIONS(2391), 1, - sym_string_start, + sym_type_conversion, + [70009] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1035), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, + ACTIONS(1633), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 29, + ACTIONS(1631), 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_async, + 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88514,43 +87841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71143] = 8, - ACTIONS(2250), 1, + sym_type_conversion, + [70055] = 8, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1223), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2240), 5, + ACTIONS(2297), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 26, + ACTIONS(2295), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88560,143 +87890,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71199] = 5, - ACTIONS(2394), 1, - sym_string_start, + [70111] = 15, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2242), 1, + anon_sym_AMP, + ACTIONS(2244), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1037), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, - anon_sym_as, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2226), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2256), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2254), 16, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71249] = 13, - ACTIONS(2250), 1, + sym_type_conversion, + [70181] = 15, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, - ACTIONS(2274), 1, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2242), 1, + anon_sym_AMP, + ACTIONS(2244), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2226), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, + ACTIONS(2236), 2, anon_sym_DASH, - STATE(1223), 2, + anon_sym_PLUS, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2264), 3, + ACTIONS(2234), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, + ACTIONS(2252), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2250), 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_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [71315] = 8, - ACTIONS(2250), 1, + [70251] = 8, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1223), 2, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(2301), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 26, + ACTIONS(2299), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88706,44 +88048,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71371] = 5, - ACTIONS(2397), 1, - sym_string_start, + [70307] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1040), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 5, + ACTIONS(1655), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 29, + ACTIONS(1653), 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_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88753,38 +88090,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71421] = 3, + sym_type_conversion, + [70353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 6, - anon_sym_as, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, + ACTIONS(2416), 32, + 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_async, - 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88794,285 +88134,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71467] = 8, - ACTIONS(2250), 1, + [70399] = 13, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, + ACTIONS(2244), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1223), 2, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2226), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 5, - anon_sym_STAR, + ACTIONS(2218), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 26, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 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_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [71523] = 5, - ACTIONS(756), 1, - sym_string_start, + [70465] = 14, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2267), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_STAR_STAR, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2287), 1, + anon_sym_AMP, + ACTIONS(2289), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1021), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, + ACTIONS(2269), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2281), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1206), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2279), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 17, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71573] = 5, - ACTIONS(756), 1, - sym_string_start, + [70533] = 14, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, + ACTIONS(2242), 1, + anon_sym_AMP, + ACTIONS(2244), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1043), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, + ACTIONS(2224), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2226), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 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_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71623] = 20, - ACTIONS(2199), 1, - anon_sym_as, - ACTIONS(2400), 1, + sym_type_conversion, + [70601] = 10, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, - ACTIONS(2416), 1, - anon_sym_not, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, - ACTIONS(2428), 1, - anon_sym_is, - STATE(1545), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2426), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1322), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2414), 3, + ACTIONS(2218), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2234), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2408), 6, + ACTIONS(2216), 23, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, anon_sym_in, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [71703] = 3, + anon_sym_is, + sym_type_conversion, + [70661] = 13, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2267), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_STAR_STAR, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2289), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 6, - anon_sym_as, + ACTIONS(2269), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2281), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1206), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2279), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 18, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71749] = 5, - ACTIONS(800), 1, - sym_string_start, + [70727] = 8, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1052), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 5, - anon_sym_as, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2216), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89082,195 +88445,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [71799] = 20, - ACTIONS(2199), 1, - anon_sym_EQ, - ACTIONS(2430), 1, + sym_type_conversion, + [70783] = 20, + ACTIONS(2192), 1, + anon_sym_as, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, - ACTIONS(2446), 1, - anon_sym_not, - ACTIONS(2450), 1, + ACTIONS(2438), 1, anon_sym_PIPE, - ACTIONS(2452), 1, + ACTIONS(2440), 1, + anon_sym_not, + ACTIONS(2442), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2444), 1, anon_sym_CARET, - ACTIONS(2458), 1, + ACTIONS(2448), 1, anon_sym_is, - STATE(1527), 1, + STATE(1601), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 2, + ACTIONS(2426), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, - ACTIONS(2456), 2, + anon_sym_PLUS, + ACTIONS(2446), 2, anon_sym_LT, anon_sym_GT, - STATE(1445), 2, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2444), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2438), 6, + ACTIONS(2428), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 7, + ACTIONS(2178), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - [71879] = 12, - ACTIONS(2250), 1, + [70863] = 15, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2252), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2260), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2262), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2242), 1, + anon_sym_AMP, + ACTIONS(2244), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2254), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2256), 2, + ACTIONS(2226), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, + ACTIONS(2236), 2, anon_sym_DASH, - STATE(1223), 2, + anon_sym_PLUS, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2264), 3, + ACTIONS(2234), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 19, + ACTIONS(2260), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2258), 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_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [71943] = 3, + [70933] = 12, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2267), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_STAR_STAR, + ACTIONS(2277), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 6, - anon_sym_as, + ACTIONS(2269), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2271), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2281), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1206), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2279), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 19, 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_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [71989] = 3, + [70997] = 5, + ACTIONS(748), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + STATE(1039), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(1526), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89280,42 +88658,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72035] = 5, - ACTIONS(800), 1, - sym_string_start, + [71047] = 11, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1040), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 5, - anon_sym_as, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 21, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89325,39 +88708,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72085] = 5, - ACTIONS(1542), 1, - anon_sym_COMMA, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [71109] = 8, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2216), 26, + anon_sym_COMMA, anon_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89367,46 +88756,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [72134] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [71165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(1607), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 25, - anon_sym_RPAREN, + ACTIONS(1605), 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_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89416,127 +88799,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72189] = 3, + sym_type_conversion, + [71211] = 12, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2224), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2226), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 19, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72234] = 5, + sym_type_conversion, + [71275] = 5, + ACTIONS(748), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + STATE(1003), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(2212), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 17, - 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_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72283] = 5, - ACTIONS(822), 1, - sym_string_start, + [71325] = 8, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2232), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1095), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1545), 4, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2299), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89546,44 +88944,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72332] = 8, - ACTIONS(2400), 1, + sym_type_conversion, + [71381] = 8, + ACTIONS(2220), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2222), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2230), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2232), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1322), 2, + STATE(1208), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2236), 5, - anon_sym_as, + ACTIONS(2297), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 25, + ACTIONS(2295), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89593,51 +88992,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72387] = 15, - ACTIONS(2324), 1, + sym_type_conversion, + [71437] = 15, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2326), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2344), 1, + ACTIONS(2283), 1, anon_sym_PIPE, - ACTIONS(2346), 1, + ACTIONS(2287), 1, anon_sym_AMP, - ACTIONS(2348), 1, + ACTIONS(2289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2271), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, + ACTIONS(2281), 2, anon_sym_DASH, - STATE(1355), 2, + anon_sym_PLUS, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2244), 3, - anon_sym_EQ, + ACTIONS(2252), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2242), 15, - anon_sym_RPAREN, + ACTIONS(2250), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89647,51 +89048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72456] = 15, - ACTIONS(2324), 1, + [71507] = 15, + ACTIONS(2265), 1, anon_sym_DOT, - ACTIONS(2326), 1, + ACTIONS(2267), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, + ACTIONS(2275), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2344), 1, + ACTIONS(2283), 1, anon_sym_PIPE, - ACTIONS(2346), 1, + ACTIONS(2287), 1, anon_sym_AMP, - ACTIONS(2348), 1, + ACTIONS(2289), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2269), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2271), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, + ACTIONS(2281), 2, anon_sym_DASH, - STATE(1355), 2, + anon_sym_PLUS, + STATE(1206), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2248), 3, - anon_sym_EQ, + ACTIONS(2256), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2279), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2246), 15, - anon_sym_RPAREN, + ACTIONS(2254), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -89701,7 +89103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72525] = 4, + [71577] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -89725,14 +89127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89742,102 +89145,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [72572] = 19, - ACTIONS(2464), 1, + [71624] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1586), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1584), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(2466), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(2474), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2476), 1, anon_sym_LBRACK, - ACTIONS(2480), 1, - anon_sym_not, - ACTIONS(2484), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2486), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2488), 1, anon_sym_CARET, - ACTIONS(2492), 1, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, anon_sym_is, - STATE(1529), 1, - aux_sym_comparison_operator_repeat1, + [71669] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2468), 2, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, anon_sym_LT, anon_sym_GT, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, + ACTIONS(1605), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_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(2472), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2185), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [72649] = 6, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(2494), 1, - anon_sym_LBRACK, - STATE(1897), 1, - sym_type_parameter, + anon_sym_is, + [71714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(2452), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, + ACTIONS(2450), 31, + 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_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89847,44 +89272,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72700] = 8, - ACTIONS(2400), 1, + [71759] = 8, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1322), 2, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2240), 5, - anon_sym_as, + ACTIONS(2218), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 25, + ACTIONS(2216), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89894,38 +89319,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72755] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [71814] = 11, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2360), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89935,19 +89369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [72802] = 3, + [71875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2456), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, + ACTIONS(2454), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89962,14 +89394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -89979,81 +89411,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72847] = 3, + [71920] = 15, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2360), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2260), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2258), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72892] = 3, + [71989] = 8, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2216), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90063,39 +89512,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72937] = 3, + [72044] = 10, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, + ACTIONS(2360), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90105,38 +89561,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [72982] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [72103] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(2460), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(2458), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90146,144 +89603,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [73029] = 12, - ACTIONS(2324), 1, + [72148] = 14, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2326), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, + ACTIONS(2372), 2, anon_sym_DASH, - STATE(1355), 2, + anon_sym_PLUS, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, - anon_sym_RPAREN, + ACTIONS(2216), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73092] = 11, - ACTIONS(2357), 1, + [72215] = 15, + ACTIONS(2326), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2328), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2338), 1, anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, anon_sym_DASH, - STATE(1432), 2, + anon_sym_PLUS, + STATE(1346), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, + ACTIONS(2256), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2340), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 20, + ACTIONS(2254), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73153] = 13, - ACTIONS(2324), 1, - anon_sym_DOT, + [72284] = 15, ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_PIPE, ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2332), 2, anon_sym_GT_GT, anon_sym_LT_LT, ACTIONS(2342), 2, - anon_sym_PLUS, anon_sym_DASH, - STATE(1355), 2, + anon_sym_PLUS, + STATE(1346), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2252), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2340), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, + ACTIONS(2250), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -90293,25 +89758,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73218] = 3, + [72353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, + ACTIONS(2464), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 31, + ACTIONS(2462), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90326,14 +89789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90343,93 +89806,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73263] = 15, - ACTIONS(2357), 1, + [72398] = 13, + ACTIONS(2356), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2366), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2368), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, + ACTIONS(2380), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2360), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2362), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2372), 2, anon_sym_DASH, - STATE(1432), 2, + anon_sym_PLUS, + STATE(1315), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2318), 3, - anon_sym_as, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2370), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2316), 15, - anon_sym_RPAREN, + ACTIONS(2216), 17, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73332] = 3, + [72463] = 6, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(1596), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(1588), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1593), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1590), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90439,44 +89903,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73377] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, + [72514] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, - anon_sym_RPAREN, + ACTIONS(679), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90486,39 +89948,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73432] = 3, + [72565] = 6, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(671), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(679), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90528,17 +89993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73477] = 3, + [72616] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(1625), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 31, + ACTIONS(1620), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90553,14 +90018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90570,17 +90035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73522] = 3, + [72661] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(1643), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 31, + ACTIONS(1638), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90595,14 +90060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90612,59 +90077,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73567] = 3, + [72706] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 5, + ACTIONS(2321), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2319), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + 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_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [72751] = 12, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2216), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73612] = 3, + [72814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(2468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 31, + ACTIONS(2466), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90679,14 +90195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90696,141 +90212,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73657] = 14, - ACTIONS(2324), 1, - anon_sym_DOT, + [72859] = 12, ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_AMP, - ACTIONS(2348), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2330), 2, + ACTIONS(2332), 2, anon_sym_GT_GT, anon_sym_LT_LT, ACTIONS(2342), 2, - anon_sym_PLUS, anon_sym_DASH, - STATE(1355), 2, + anon_sym_PLUS, + STATE(1346), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2340), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 16, + ACTIONS(2216), 18, anon_sym_RPAREN, 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_PIPE, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73724] = 10, - ACTIONS(2324), 1, - anon_sym_DOT, + [72922] = 13, ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, anon_sym_LBRACK, + ACTIONS(2350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1355), 2, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1346), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, + ACTIONS(2340), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 22, + ACTIONS(2216), 17, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73783] = 3, + [72987] = 14, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, + ACTIONS(2330), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2340), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 16, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73054] = 10, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2340), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2216), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90840,39 +90417,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73828] = 3, + [73113] = 8, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2216), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90882,39 +90464,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73873] = 3, + [73168] = 15, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_PIPE, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2330), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2260), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2340), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2258), 15, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73237] = 11, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2330), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2342), 2, anon_sym_DASH, + anon_sym_PLUS, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2340), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2216), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90924,39 +90568,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73918] = 3, + [73298] = 8, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2216), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90966,41 +90615,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [73963] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(722), 1, - anon_sym_EQ, + [73353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2418), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2416), 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_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91010,41 +90656,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74012] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(722), 1, - anon_sym_EQ, + sym_type_conversion, + [73398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1526), 31, + 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_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91054,41 +90699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74061] = 5, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(2540), 1, - anon_sym_EQ, + [73443] = 8, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, - anon_sym_as, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2295), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91098,105 +90746,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74110] = 15, - ACTIONS(2357), 1, + [73498] = 12, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, - anon_sym_PIPE, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2426), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, - STATE(1432), 2, + anon_sym_PLUS, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2244), 3, + ACTIONS(2218), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2242), 15, + ACTIONS(2216), 18, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74179] = 15, - ACTIONS(2357), 1, + [73561] = 15, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2377), 1, + ACTIONS(2404), 1, anon_sym_PIPE, - ACTIONS(2379), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2381), 1, + ACTIONS(2410), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2402), 2, anon_sym_DASH, - STATE(1432), 2, + anon_sym_PLUS, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2248), 3, + ACTIONS(2256), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2246), 15, - anon_sym_RPAREN, + ACTIONS(2254), 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, @@ -91206,88 +90851,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74248] = 8, - ACTIONS(2324), 1, + [73630] = 13, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2326), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2334), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2336), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, + ACTIONS(2444), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(2424), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2426), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1361), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(2434), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 17, 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_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74303] = 5, - ACTIONS(822), 1, - sym_string_start, + [73695] = 8, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1142), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2221), 4, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2219), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2299), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91297,59 +90950,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74352] = 3, + [73750] = 19, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2488), 1, + anon_sym_PIPE, + ACTIONS(2490), 1, + anon_sym_not, + ACTIONS(2492), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_CARET, + ACTIONS(2498), 1, + anon_sym_is, + STATE(1593), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(2474), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2476), 2, 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, + anon_sym_LT_LT, + ACTIONS(2486), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2496), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2478), 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_is, - [74397] = 3, + ACTIONS(2178), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [73827] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1655), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 31, + ACTIONS(1653), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91364,14 +91033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91381,59 +91050,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74442] = 3, + [73872] = 15, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2404), 1, + anon_sym_PIPE, + ACTIONS(2408), 1, + anon_sym_AMP, + ACTIONS(2410), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, + ACTIONS(2390), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2250), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [73941] = 15, + ACTIONS(2356), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2358), 1, anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2252), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2250), 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74010] = 15, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, anon_sym_STAR_STAR, + ACTIONS(2368), 1, anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2256), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2370), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2254), 15, + 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_PLUS, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [74079] = 14, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2422), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, + anon_sym_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_LBRACK, + ACTIONS(2442), 1, + anon_sym_AMP, + ACTIONS(2444), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2424), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2426), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2436), 2, anon_sym_DASH, + anon_sym_PLUS, + STATE(1361), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2434), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2216), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74487] = 3, + [74146] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1633), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, + ACTIONS(1631), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91448,14 +91290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91465,17 +91307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74532] = 3, + [74191] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1586), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, + ACTIONS(1584), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91490,14 +91332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91507,93 +91349,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74577] = 15, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_PIPE, - ACTIONS(2346), 1, - anon_sym_AMP, - ACTIONS(2348), 1, - anon_sym_CARET, + [74236] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(1531), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2318), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2316), 15, - anon_sym_RPAREN, + ACTIONS(1526), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_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_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74646] = 3, + [74283] = 5, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(2500), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1526), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91603,39 +91436,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74691] = 3, + [74332] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91645,47 +91479,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74736] = 11, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [74379] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(736), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2342), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 20, + ACTIONS(277), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91695,39 +91523,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74797] = 3, + [74428] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(279), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(277), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91737,39 +91566,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74842] = 3, + [74475] = 8, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2422), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, + anon_sym_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + STATE(1361), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2295), 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91779,39 +91613,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [74887] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, + [74530] = 5, ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(736), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91821,11 +91657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [74936] = 5, - ACTIONS(284), 1, - anon_sym_COMMA, + [74579] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, @@ -91838,9 +91670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -91848,14 +91681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91865,19 +91699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [74985] = 3, + [74626] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(1651), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 31, + ACTIONS(1649), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -91892,14 +91725,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -91909,33 +91742,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75030] = 5, + [74671] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, + ACTIONS(671), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 17, + ACTIONS(666), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -91953,33 +91786,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75079] = 5, + [74720] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, + ACTIONS(671), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 17, + ACTIONS(666), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -91997,44 +91830,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75128] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [74769] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(1651), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, - anon_sym_RPAREN, + ACTIONS(1649), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92044,39 +91872,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75183] = 3, + [74814] = 8, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2422), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, + anon_sym_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + STATE(1361), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2299), 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_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92086,131 +91919,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75228] = 10, - ACTIONS(2357), 1, + [74869] = 12, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1432), 2, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 22, - anon_sym_RPAREN, + ACTIONS(2216), 18, 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_PLUS, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75287] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [74932] = 13, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2410), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_as, + ACTIONS(2390), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(2392), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_GT_GT, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 17, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [75334] = 4, + [74997] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(279), 6, - anon_sym_as, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92220,40 +92065,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [75381] = 4, - ACTIONS(1547), 1, + sym_type_conversion, + [75046] = 5, + ACTIONS(284), 1, + anon_sym_COMMA, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92263,40 +92109,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [75428] = 3, + sym_type_conversion, + [75095] = 8, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2338), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2295), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92306,51 +92157,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75473] = 15, - ACTIONS(2430), 1, + [75150] = 14, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, + ACTIONS(2408), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2410), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2402), 2, anon_sym_DASH, - STATE(1445), 2, + anon_sym_PLUS, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2244), 3, - anon_sym_EQ, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2242), 15, + ACTIONS(2216), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -92360,71 +92210,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75542] = 15, - ACTIONS(2430), 1, + [75217] = 10, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2248), 3, - anon_sym_EQ, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2246), 15, + ACTIONS(2216), 22, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75611] = 3, + [75276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 31, + ACTIONS(2502), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -92439,14 +92284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92456,39 +92301,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75656] = 3, + [75321] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2216), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92498,37 +92348,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75701] = 3, + [75376] = 6, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(2002), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 31, - sym_string_start, + ACTIONS(1526), 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_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92538,188 +92393,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [75746] = 14, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_AMP, - ACTIONS(2381), 1, - anon_sym_CARET, + [75427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2418), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 16, - anon_sym_RPAREN, + ACTIONS(2416), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75813] = 13, - ACTIONS(2357), 1, + [75472] = 15, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2359), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2367), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2369), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, - ACTIONS(2381), 1, + ACTIONS(2404), 1, + anon_sym_PIPE, + ACTIONS(2408), 1, + anon_sym_AMP, + ACTIONS(2410), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(2390), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2363), 2, + ACTIONS(2392), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, + ACTIONS(2402), 2, anon_sym_DASH, - STATE(1432), 2, + anon_sym_PLUS, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2260), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, + ACTIONS(2400), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, - anon_sym_RPAREN, + ACTIONS(2258), 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_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75878] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2570), 31, - sym__newline, - anon_sym_SEMI, + [75541] = 11, + ACTIONS(2386), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2388), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2396), 1, anon_sym_STAR_STAR, + ACTIONS(2398), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [75923] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2390), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2402), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2400), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 20, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92729,28 +92539,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [75968] = 8, - ACTIONS(2400), 1, + [75602] = 8, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2388), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2396), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2398), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1322), 2, + STATE(1400), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(2218), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(2216), 25, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -92759,14 +92569,14 @@ static const uint16_t ts_small_parse_table[] = { 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92776,47 +92586,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76023] = 11, - ACTIONS(2400), 1, + [75657] = 10, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 20, + ACTIONS(2216), 22, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92826,44 +92635,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76084] = 8, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, + [75716] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2240), 5, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 25, + ACTIONS(1526), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92873,98 +92677,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76139] = 15, - ACTIONS(2400), 1, + sym_type_conversion, + [75763] = 8, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2318), 3, + ACTIONS(2218), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2316), 15, + ACTIONS(2216), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76208] = 8, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - anon_sym_STAR_STAR, - ACTIONS(2412), 1, - anon_sym_LBRACK, + [75818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1322), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, - anon_sym_as, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(2508), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -92974,44 +92767,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76263] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [75863] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(2514), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 25, - anon_sym_RPAREN, + ACTIONS(2512), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93021,46 +92809,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76318] = 10, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - anon_sym_STAR_STAR, - ACTIONS(2412), 1, - anon_sym_LBRACK, + [75908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2518), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1322), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 22, + ACTIONS(2516), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93070,44 +92851,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76377] = 8, - ACTIONS(2430), 1, + [75953] = 8, + ACTIONS(2326), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2328), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2336), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2338), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1445), 2, + STATE(1346), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2236), 5, + ACTIONS(2301), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 25, + ACTIONS(2299), 25, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93117,44 +92898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76432] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [76008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, - anon_sym_as, + ACTIONS(1618), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, - anon_sym_RPAREN, + ACTIONS(1613), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93164,89 +92940,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76487] = 12, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [76053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2361), 2, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2363), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2371), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(277), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76550] = 3, + [76098] = 5, + ACTIONS(1528), 1, + anon_sym_COMMA, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, - anon_sym_as, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 31, - sym_string_start, + ACTIONS(1526), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93256,96 +93025,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [76595] = 14, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - anon_sym_STAR_STAR, - ACTIONS(2412), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + sym_type_conversion, + [76147] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2522), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 16, + ACTIONS(2520), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76662] = 6, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(2578), 1, - anon_sym_LBRACK, - STATE(1909), 1, - sym_type_parameter, + [76192] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(2321), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, - sym__newline, - anon_sym_SEMI, + ACTIONS(2319), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93355,93 +93109,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76713] = 13, - ACTIONS(2400), 1, + sym_type_conversion, + [76237] = 15, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, - ACTIONS(2424), 1, + ACTIONS(2438), 1, + anon_sym_PIPE, + ACTIONS(2442), 1, + anon_sym_AMP, + ACTIONS(2444), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2406), 2, + ACTIONS(2426), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, - STATE(1322), 2, + anon_sym_PLUS, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2260), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, + ACTIONS(2258), 15, + anon_sym_RPAREN, 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_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76778] = 5, - ACTIONS(2580), 1, - sym_string_start, + [76306] = 11, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2422), 1, + anon_sym_LPAREN, + ACTIONS(2430), 1, + anon_sym_STAR_STAR, + ACTIONS(2432), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1142), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2225), 4, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2436), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1361), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2223), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2434), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93451,95 +93214,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76827] = 12, - ACTIONS(2400), 1, + [76367] = 8, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2402), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2410), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2412), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2218), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, + ACTIONS(2216), 25, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76890] = 8, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2336), 1, - anon_sym_LBRACK, + [76422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2240), 5, + ACTIONS(2526), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 25, - anon_sym_RPAREN, + ACTIONS(2524), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93549,202 +93303,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [76945] = 12, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, + [76467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2530), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, + ACTIONS(2528), 31, + 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77008] = 13, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, - ACTIONS(2454), 1, - anon_sym_CARET, + [76512] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(1596), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, + ACTIONS(1590), 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(2230), 17, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1588), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77073] = 14, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + [76561] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2534), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 16, + ACTIONS(2532), 31, + 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77140] = 10, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, + [76606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2538), 5, anon_sym_STAR, - anon_sym_SLASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 22, + ACTIONS(2536), 31, + 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_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93754,98 +93473,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77199] = 15, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - anon_sym_STAR_STAR, - ACTIONS(2412), 1, - anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + [76651] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(2542), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2248), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 15, + ACTIONS(2540), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77268] = 8, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2359), 1, - anon_sym_LPAREN, - ACTIONS(2367), 1, - anon_sym_STAR_STAR, - ACTIONS(2369), 1, - anon_sym_LBRACK, + [76696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1432), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2240), 5, - anon_sym_as, + ACTIONS(2546), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 25, - anon_sym_RPAREN, + ACTIONS(2544), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93855,44 +93557,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77323] = 8, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, + [76741] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(2550), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(2548), 31, + 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93902,50 +93599,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77378] = 15, - ACTIONS(2430), 1, + [76786] = 15, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, + ACTIONS(2438), 1, anon_sym_PIPE, - ACTIONS(2452), 1, + ACTIONS(2442), 1, anon_sym_AMP, - ACTIONS(2454), 1, + ACTIONS(2444), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2436), 2, + ACTIONS(2426), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2436), 2, anon_sym_DASH, - STATE(1445), 2, + anon_sym_PLUS, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2318), 3, - anon_sym_EQ, + ACTIONS(2256), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2316), 15, + ACTIONS(2254), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -93956,94 +93653,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77447] = 11, - ACTIONS(2430), 1, + [76855] = 15, + ACTIONS(2420), 1, anon_sym_DOT, - ACTIONS(2432), 1, + ACTIONS(2422), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2430), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2432), 1, anon_sym_LBRACK, + ACTIONS(2438), 1, + anon_sym_PIPE, + ACTIONS(2442), 1, + anon_sym_AMP, + ACTIONS(2444), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + ACTIONS(2424), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2426), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2436), 2, anon_sym_DASH, - STATE(1445), 2, + anon_sym_PLUS, + STATE(1361), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_EQ, + ACTIONS(2252), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2444), 3, + ACTIONS(2434), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2230), 20, + ACTIONS(2250), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77508] = 8, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2442), 1, - anon_sym_LBRACK, + [76924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(2552), 31, + 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_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94053,93 +93749,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77563] = 15, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2402), 1, - anon_sym_LPAREN, - ACTIONS(2410), 1, - anon_sym_STAR_STAR, - ACTIONS(2412), 1, + [76969] = 6, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(2556), 1, anon_sym_LBRACK, - ACTIONS(2420), 1, - anon_sym_PIPE, - ACTIONS(2422), 1, - anon_sym_AMP, - ACTIONS(2424), 1, - anon_sym_CARET, + STATE(1972), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2404), 2, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2406), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2418), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1322), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2244), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2414), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2242), 15, + ACTIONS(1526), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77632] = 3, + [77020] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2301), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2299), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94149,41 +93841,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [77677] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(679), 1, - anon_sym_COLON, + [77075] = 8, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2388), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_STAR_STAR, + ACTIONS(2398), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, + STATE(1400), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2295), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94193,42 +93888,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77728] = 6, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(679), 1, - anon_sym_COLON, + [77130] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, - anon_sym_as, + ACTIONS(2560), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, + ACTIONS(2558), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94238,42 +93930,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77779] = 6, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(1608), 1, - anon_sym_COLON, + [77175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1605), 5, - anon_sym_as, + ACTIONS(2564), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(2562), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94283,19 +93972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77830] = 3, + [77220] = 5, + ACTIONS(2566), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, + STATE(1149), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2173), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 31, - sym_string_start, + ACTIONS(2171), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94306,15 +93997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94324,40 +94016,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [77875] = 3, + [77269] = 5, + ACTIONS(814), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, - anon_sym_as, + STATE(1149), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2214), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 31, - sym_string_start, + ACTIONS(2212), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94367,38 +94060,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77920] = 3, + [77318] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(277), 31, + 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94408,18 +94102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [77964] = 3, + [77363] = 5, + ACTIONS(814), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + STATE(1150), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1531), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94430,15 +94127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94448,21 +94146,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78008] = 3, + [77412] = 14, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2492), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2218), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [77478] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 30, + ACTIONS(1605), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -94473,14 +94222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94490,18 +94239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78052] = 3, + [77522] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(2452), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(2450), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94513,14 +94261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94530,38 +94279,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78096] = 3, + [77566] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94571,39 +94321,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78140] = 3, + [77610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2522), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2520), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94613,38 +94361,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78184] = 3, + sym_type_conversion, + [77654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, - anon_sym_as, + ACTIONS(2418), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 30, + ACTIONS(2416), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94654,38 +94403,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78228] = 3, + [77698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(2468), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(2466), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94695,41 +94443,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78272] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [77742] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2546), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2544), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94739,37 +94484,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78320] = 3, + sym_type_conversion, + [77786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(2542), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, + ACTIONS(2540), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94779,18 +94525,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [78364] = 3, + sym_type_conversion, + [77830] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, + ACTIONS(2534), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 30, + ACTIONS(2532), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94802,14 +94548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94819,23 +94566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78408] = 4, - ACTIONS(1642), 1, - anon_sym_COMMA, + [77874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1643), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1638), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -94844,14 +94589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94861,19 +94607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78454] = 3, + [77918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(1625), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 30, + ACTIONS(1620), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94885,14 +94630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94902,19 +94648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78498] = 3, + [77962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, + ACTIONS(2530), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 30, + ACTIONS(2528), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94926,14 +94671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94943,19 +94689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78542] = 3, + [78006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2526), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2524), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -94967,14 +94712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94984,24 +94730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78586] = 3, + [78050] = 5, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + ACTIONS(1528), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 30, - sym_string_start, + ACTIONS(1526), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -95010,14 +94757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95027,39 +94774,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78630] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [78098] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 28, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95069,39 +94815,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78676] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [78142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(2518), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2516), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95111,39 +94855,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78722] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [78186] = 4, + ACTIONS(1622), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1625), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95153,36 +94897,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78768] = 3, + sym_type_conversion, + [78232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2522), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(2520), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95192,125 +94939,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78812] = 5, + [78276] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1653), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 16, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78860] = 5, + [78320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2456), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(679), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2454), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 16, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [78908] = 4, - ACTIONS(1631), 1, - anon_sym_COMMA, + [78364] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1526), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95320,22 +95063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [78954] = 3, + [78410] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 30, - sym_string_start, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95344,16 +95087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95363,37 +95105,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [78998] = 4, - ACTIONS(1542), 1, - anon_sym_COMMA, + [78456] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95403,96 +95147,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [79044] = 19, - ACTIONS(2326), 1, - anon_sym_LPAREN, - ACTIONS(2334), 1, - anon_sym_STAR_STAR, - ACTIONS(2340), 1, - anon_sym_not, - ACTIONS(2344), 1, - anon_sym_PIPE, - ACTIONS(2346), 1, - anon_sym_AMP, - ACTIONS(2348), 1, - anon_sym_CARET, - ACTIONS(2352), 1, - anon_sym_is, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LBRACK, - STATE(1526), 1, - aux_sym_comparison_operator_repeat1, + [78502] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2328), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2330), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2342), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2350), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1355), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2338), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2185), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(279), 5, anon_sym_as, - anon_sym_if, - anon_sym_and, - anon_sym_or, - ACTIONS(2332), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [79120] = 4, - ACTIONS(1614), 1, - anon_sym_COMMA, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1617), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95502,125 +95189,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [79166] = 15, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_CARET, + [78548] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, + ACTIONS(2460), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2242), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2458), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [79234] = 15, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, anon_sym_STAR_STAR, - ACTIONS(2476), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2248), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2246), 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_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79302] = 3, + sym_type_conversion, + [78592] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2464), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(2462), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95632,14 +95252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95649,42 +95270,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79346] = 5, + [78636] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95694,37 +95313,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79394] = 3, + [78682] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2321), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 30, + ACTIONS(2319), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95734,39 +95354,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [79438] = 4, + [78726] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1605), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(277), 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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95776,18 +95396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [79484] = 3, + [78772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2560), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2558), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95799,14 +95418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95816,19 +95436,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79528] = 3, + [78816] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2550), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2548), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95840,14 +95459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95857,40 +95477,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79572] = 3, + [78860] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + ACTIONS(2452), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 30, - sym_string_start, + ACTIONS(2450), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95900,17 +95519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [79616] = 3, + [78904] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(2502), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95922,14 +95541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -95939,79 +95559,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79660] = 3, + [78948] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, + ACTIONS(668), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 30, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(666), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79704] = 3, + [78996] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96021,38 +95646,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [79748] = 3, + [79044] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96062,105 +95689,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [79792] = 5, + [79092] = 19, + ACTIONS(2328), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_STAR_STAR, + ACTIONS(2344), 1, + anon_sym_PIPE, + ACTIONS(2346), 1, + anon_sym_not, + ACTIONS(2348), 1, + anon_sym_AMP, + ACTIONS(2350), 1, + anon_sym_CARET, + ACTIONS(2354), 1, + anon_sym_is, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_LBRACK, + STATE(1591), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2330), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_as, + ACTIONS(2332), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2342), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2352), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + STATE(1346), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2340), 3, anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(674), 16, + ACTIONS(2178), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, anon_sym_and, anon_sym_or, + ACTIONS(2334), 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_is, - anon_sym_RBRACE, - [79840] = 5, + [79168] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2508), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [79888] = 3, + sym_type_conversion, + [79212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, + ACTIONS(2514), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 30, + ACTIONS(2512), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96172,14 +95809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96189,39 +95827,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [79932] = 3, + [79256] = 8, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, - anon_sym_as, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2297), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2295), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96231,41 +95874,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [79976] = 5, - ACTIONS(1547), 1, + [79310] = 5, + ACTIONS(1533), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 2, + ACTIONS(1588), 2, anon_sym_async, anon_sym_for, - ACTIONS(1605), 5, + ACTIONS(1593), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(1590), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96275,77 +95917,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80024] = 3, + [79358] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + ACTIONS(2514), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 30, - sym_string_start, + ACTIONS(2512), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [80068] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2522), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2520), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96355,39 +95958,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [80112] = 3, + [79402] = 5, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(1528), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 30, + ACTIONS(1526), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96397,199 +96001,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80156] = 12, - ACTIONS(2464), 1, + [79450] = 8, + ACTIONS(2470), 1, anon_sym_DOT, - ACTIONS(2466), 1, + ACTIONS(2472), 1, anon_sym_LPAREN, - ACTIONS(2474), 1, + ACTIONS(2480), 1, anon_sym_STAR_STAR, - ACTIONS(2476), 1, + ACTIONS(2482), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, + STATE(1467), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 18, + ACTIONS(2301), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2299), 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_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80218] = 13, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(2488), 1, - anon_sym_CARET, + [79504] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, + ACTIONS(2538), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 17, - 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_PIPE, - anon_sym_AMP, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [80282] = 14, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2232), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2468), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 16, - 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_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [80348] = 10, - ACTIONS(2464), 1, + ACTIONS(2536), 30, anon_sym_DOT, - ACTIONS(2466), 1, anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2232), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96599,43 +96087,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80406] = 8, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, + sym_type_conversion, + [79548] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 4, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(277), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96645,99 +96130,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80460] = 15, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, + [79594] = 6, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(1540), 1, anon_sym_LBRACK, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_CARET, + STATE(2109), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2318), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2468), 2, + ACTIONS(1531), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2316), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [80528] = 11, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2232), 2, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2468), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2230), 20, + ACTIONS(1526), 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_RBRACK, + 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_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96747,37 +96174,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80588] = 3, + [79644] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 5, - anon_sym_as, + ACTIONS(279), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 30, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96787,44 +96216,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80632] = 8, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, + [79690] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 4, + ACTIONS(1531), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2230), 25, + ACTIONS(1526), 28, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96834,17 +96258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [80686] = 3, + [79736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 30, + ACTIONS(2552), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96856,14 +96280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96873,39 +96298,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [80730] = 3, + [79780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, - anon_sym_as, + ACTIONS(2321), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 30, + ACTIONS(2319), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96915,20 +96340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80774] = 3, + [79824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(1651), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 30, + ACTIONS(1649), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96939,14 +96364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96956,18 +96381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80818] = 3, + [79868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2564), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 30, + ACTIONS(2562), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96980,14 +96404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -96997,59 +96422,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [80862] = 3, + [79912] = 13, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2494), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 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_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [80906] = 3, + [79976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + ACTIONS(2564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 30, + ACTIONS(2562), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97061,14 +96495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97078,38 +96513,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [80950] = 3, + [80020] = 8, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2216), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97119,38 +96560,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [80994] = 3, + [80074] = 11, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97160,84 +96609,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81038] = 5, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1542), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1545), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1540), 27, + [80134] = 15, + ACTIONS(2470), 1, anon_sym_DOT, + ACTIONS(2472), 1, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, + ACTIONS(2480), 1, anon_sym_STAR_STAR, + ACTIONS(2482), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2488), 1, anon_sym_PIPE, + ACTIONS(2492), 1, anon_sym_AMP, + ACTIONS(2494), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2260), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2258), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81086] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [80202] = 8, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, - anon_sym_as, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2218), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2216), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97247,82 +96708,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81132] = 5, + [80256] = 10, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 3, - anon_sym_as, + ACTIONS(2218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1598), 16, + ACTIONS(2216), 22, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [81180] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1618), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97332,37 +96797,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81226] = 3, + [80358] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 30, + ACTIONS(679), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97372,40 +96840,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [81270] = 4, + [80406] = 5, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(679), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97415,41 +96883,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81316] = 6, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(2583), 1, - anon_sym_LBRACK, - STATE(1943), 1, - sym_type_parameter, + [80454] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(1651), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, + ACTIONS(1649), 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_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_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97459,39 +96924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81366] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [80498] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(1618), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 28, + ACTIONS(1613), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97501,78 +96964,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81412] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [80542] = 12, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2218), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2216), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81458] = 3, + [80604] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 30, + ACTIONS(2466), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97582,82 +97056,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [81502] = 3, + [80648] = 19, + ACTIONS(2222), 1, + anon_sym_LPAREN, + ACTIONS(2230), 1, + anon_sym_STAR_STAR, + ACTIONS(2238), 1, + anon_sym_PIPE, + ACTIONS(2240), 1, + anon_sym_not, + ACTIONS(2242), 1, + anon_sym_AMP, + ACTIONS(2244), 1, + anon_sym_CARET, + ACTIONS(2248), 1, + anon_sym_is, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2277), 1, + anon_sym_LBRACK, + STATE(1596), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, + ACTIONS(2224), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2226), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2236), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2246), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 30, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(1208), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2234), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2178), 6, anon_sym_COMMA, anon_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_not, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2228), 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_is, - anon_sym_RBRACE, - sym_type_conversion, - [81546] = 4, - ACTIONS(292), 1, + [80724] = 6, + ACTIONS(1533), 1, anon_sym_COLON_EQ, + ACTIONS(2569), 1, + anon_sym_LBRACK, + STATE(2017), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 6, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1526), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97667,37 +97157,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81592] = 3, + [80774] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2418), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 30, + ACTIONS(2416), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97707,18 +97198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [81636] = 3, + [80818] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 30, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97730,14 +97220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97747,84 +97238,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [81680] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [80862] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(279), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(277), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + sym_type_conversion, + [80906] = 15, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2488), 1, anon_sym_PIPE, + ACTIONS(2492), 1, anon_sym_AMP, + ACTIONS(2494), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2252), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2250), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81728] = 4, - ACTIONS(1547), 1, + [80974] = 5, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(679), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97834,38 +97376,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81774] = 3, + [81022] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, + ACTIONS(666), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(668), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 30, - sym_string_start, + ACTIONS(679), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97875,40 +97419,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81818] = 5, - ACTIONS(292), 1, + [81070] = 5, + ACTIONS(1533), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(279), 5, + ACTIONS(1588), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1593), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(1590), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97918,78 +97462,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81866] = 3, + [81118] = 15, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(2488), 1, + anon_sym_PIPE, + ACTIONS(2492), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2256), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(2474), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2476), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2254), 15, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [81910] = 3, + [81186] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -97999,39 +97557,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [81954] = 3, + [81232] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 5, + ACTIONS(2510), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 30, - sym_string_start, + ACTIONS(2508), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98041,22 +97598,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [81998] = 5, - ACTIONS(1547), 1, + [81276] = 5, + ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 2, + ACTIONS(284), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1545), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -98067,14 +97624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98084,37 +97641,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82046] = 3, + [81324] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(284), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 30, + ACTIONS(277), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98124,21 +97684,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82090] = 3, + [81372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(1526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -98149,14 +97707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98166,17 +97725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82134] = 3, + [81416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 30, + ACTIONS(2502), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98189,14 +97748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98206,79 +97766,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82178] = 3, + [81460] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1596), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 30, + ACTIONS(1590), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1588), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82222] = 3, + sym_type_conversion, + [81508] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2418), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 30, + ACTIONS(2416), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98288,39 +97850,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82266] = 3, + [81552] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, - anon_sym_as, + ACTIONS(2321), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 30, + ACTIONS(2319), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98330,17 +97891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82310] = 3, + [81596] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, + ACTIONS(2554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 30, + ACTIONS(2552), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98353,14 +97914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98370,121 +97932,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82354] = 3, + [81640] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, - anon_sym_as, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 30, + ACTIONS(679), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - [82398] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1661), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1659), 30, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(666), 16, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82442] = 3, + [81688] = 4, + ACTIONS(1615), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, - anon_sym_as, + ACTIONS(1618), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 30, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98494,43 +98016,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82486] = 8, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, + sym_type_conversion, + [81734] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2236), 4, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2234), 25, + ACTIONS(1605), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98540,17 +98057,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82540] = 3, + sym_type_conversion, + [81778] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1586), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 30, + ACTIONS(1584), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98564,14 +98082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98581,43 +98099,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82584] = 8, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2476), 1, - anon_sym_LBRACK, + [81822] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2240), 4, + ACTIONS(1586), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2238), 25, + ACTIONS(1584), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98627,40 +98140,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82638] = 5, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [81866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1605), 5, + ACTIONS(1633), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(1631), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98670,40 +98181,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82686] = 5, + [81910] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98713,40 +98223,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82734] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [81956] = 4, + ACTIONS(1528), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, - anon_sym_as, + ACTIONS(1531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98756,40 +98264,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82782] = 5, + sym_type_conversion, + [82002] = 4, ACTIONS(292), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(674), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(676), 5, + ACTIONS(279), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 27, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98799,37 +98307,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82830] = 3, + [82048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, + ACTIONS(2321), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 30, + ACTIONS(2319), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98839,42 +98348,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [82874] = 6, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(1554), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_type_parameter, + [82092] = 4, + ACTIONS(1640), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 6, + ACTIONS(1643), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 26, + ACTIONS(1638), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98884,36 +98389,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [82924] = 3, + sym_type_conversion, + [82138] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(2538), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 30, + ACTIONS(2536), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -98923,117 +98431,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [82968] = 3, + [82182] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(668), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 30, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83012] = 19, - ACTIONS(2252), 1, - anon_sym_LPAREN, - ACTIONS(2260), 1, - anon_sym_STAR_STAR, - ACTIONS(2266), 1, - anon_sym_not, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2272), 1, anon_sym_AMP, - ACTIONS(2274), 1, anon_sym_CARET, - ACTIONS(2278), 1, - anon_sym_is, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - STATE(1534), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2254), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2256), 2, - anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2268), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2276), 2, - anon_sym_LT, - anon_sym_GT, - STATE(1223), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2264), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2185), 6, + ACTIONS(666), 16, anon_sym_COMMA, - anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - ACTIONS(2258), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83088] = 3, + anon_sym_is, + [82230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2518), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 30, + ACTIONS(2516), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99046,14 +98497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99063,18 +98515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [83132] = 3, + [82274] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2418), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 30, + ACTIONS(2416), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99082,18 +98534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99103,38 +98556,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83176] = 3, + [82318] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, + ACTIONS(1588), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1593), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 30, + ACTIONS(1590), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99144,81 +98598,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83220] = 3, + [82364] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_as, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1596), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 30, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1588), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83264] = 3, + [82412] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_as, + ACTIONS(1531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 30, + ACTIONS(1526), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99228,20 +98681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83308] = 3, + sym_type_conversion, + [82456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, + ACTIONS(2550), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 30, + ACTIONS(2548), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -99252,14 +98705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99269,79 +98723,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83352] = 5, + [82500] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(1655), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(1653), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 16, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, sym_type_conversion, - [83400] = 3, + [82544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(2560), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 30, + ACTIONS(2558), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99351,38 +98805,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83444] = 3, + [82588] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2464), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 30, + ACTIONS(2462), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99392,19 +98846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83488] = 3, + [82632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2460), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 30, + ACTIONS(2458), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99417,14 +98869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99434,39 +98887,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [83532] = 3, + [82676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 5, + ACTIONS(2456), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 30, - sym_string_start, + ACTIONS(2454), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99476,36 +98928,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83576] = 3, + [82720] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2526), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 30, + ACTIONS(2524), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99515,42 +98969,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83620] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82764] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(284), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(279), 5, + ACTIONS(2530), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 27, + ACTIONS(2528), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99560,93 +99010,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83668] = 19, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2412), 1, - anon_sym_LBRACK, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2474), 1, - anon_sym_STAR_STAR, - ACTIONS(2480), 1, - anon_sym_not, - ACTIONS(2484), 1, - anon_sym_PIPE, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_CARET, - ACTIONS(2492), 1, - anon_sym_is, - STATE(1529), 1, - aux_sym_comparison_operator_repeat1, + [82808] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2468), 2, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2470), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2482), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2490), 2, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - STATE(1477), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2478), 3, + ACTIONS(679), 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(2185), 6, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(666), 16, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2472), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83744] = 3, + anon_sym_is, + sym_type_conversion, + [82856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1643), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 30, + ACTIONS(1638), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99656,41 +99094,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - sym_type_conversion, - [83788] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82900] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1625), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1620), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99700,39 +99135,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83834] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [82944] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1633), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1631), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99742,17 +99175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83880] = 3, + sym_type_conversion, + [82988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2462), 4, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2460), 30, - sym_string_start, + ACTIONS(1584), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99763,16 +99197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99782,37 +99216,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83923] = 3, + sym_type_conversion, + [83032] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(2534), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(2532), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99822,39 +99258,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [83966] = 5, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, - ACTIONS(2540), 1, - anon_sym_EQ, + [83076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 4, + ACTIONS(2542), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 28, + ACTIONS(2540), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99864,37 +99299,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84013] = 3, + [83120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2546), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(2544), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99904,39 +99340,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84056] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(722), 1, - anon_sym_EQ, + [83164] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1584), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99946,39 +99380,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84103] = 5, - ACTIONS(292), 1, - anon_sym_COLON_EQ, - ACTIONS(722), 1, - anon_sym_EQ, + sym_type_conversion, + [83208] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1649), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -99988,38 +99421,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84150] = 4, + sym_type_conversion, + [83252] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 27, + ACTIONS(1649), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100029,62 +99462,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84195] = 3, + sym_type_conversion, + [83296] = 19, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN, + ACTIONS(2480), 1, + anon_sym_STAR_STAR, + ACTIONS(2488), 1, + anon_sym_PIPE, + ACTIONS(2490), 1, + anon_sym_not, + ACTIONS(2492), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_CARET, + ACTIONS(2498), 1, + anon_sym_is, + STATE(1593), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, - anon_sym_as, + ACTIONS(2474), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2476), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2486), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2496), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(1467), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2484), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2178), 6, 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_not, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2478), 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_is, - [84238] = 4, + [83372] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1545), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100092,15 +99541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100110,38 +99560,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84283] = 4, + [83415] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1634), 5, - anon_sym_as, + ACTIONS(2550), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 27, + ACTIONS(2548), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100151,37 +99600,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84328] = 3, + [83458] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, - anon_sym_as, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100191,37 +99640,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84371] = 3, + [83501] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_as, + ACTIONS(1531), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100231,37 +99680,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84414] = 3, + [83544] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2518), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(2516), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100271,20 +99720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84457] = 3, + [83587] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(1640), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1643), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(1638), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100292,16 +99743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100311,37 +99761,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84500] = 3, + [83632] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(668), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(679), 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(666), 15, + 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [83679] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1622), 2, anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(1625), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1620), 27, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100351,37 +99844,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84543] = 3, + [83724] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2504), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100391,22 +99884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84586] = 4, + [83767] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1645), 5, + ACTIONS(2510), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100414,15 +99905,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100432,17 +99924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84631] = 3, + [83810] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2514), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2512), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100455,14 +99947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100472,7 +99964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84674] = 3, + [83853] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -100485,6 +99977,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100493,16 +99986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100512,37 +100004,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84717] = 3, + [83896] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100552,37 +100044,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84760] = 3, + [83939] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(2522), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 29, + ACTIONS(2520), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100592,117 +100084,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84803] = 3, + [83982] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, - anon_sym_as, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 29, + ACTIONS(679), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [84846] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2514), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2512), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(666), 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_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84889] = 3, + [84029] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(1588), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1593), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(1590), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100712,20 +100167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84932] = 3, + [84074] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(1625), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -100734,15 +100188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100752,37 +100207,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [84975] = 3, + [84117] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2504), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100792,37 +100247,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85018] = 3, + [84160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1643), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(1638), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100832,37 +100287,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85061] = 3, + [84203] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2518), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2516), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100872,37 +100327,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85104] = 3, + [84246] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(1528), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(1526), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100912,37 +100368,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85147] = 3, + [84291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2538), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2536), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100952,37 +100408,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85190] = 3, + [84334] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1615), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1618), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1613), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -100992,37 +100449,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85233] = 3, + [84379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101032,17 +100489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85276] = 3, + [84422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101055,14 +100512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101072,37 +100529,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85319] = 3, + [84465] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101112,157 +100569,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85362] = 3, + [84508] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, - anon_sym_as, + ACTIONS(277), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 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(2500), 29, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(316), 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, + [84553] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(279), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [85405] = 3, + ACTIONS(316), 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, + [84598] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, - anon_sym_as, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(679), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(666), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85448] = 3, + [84645] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(668), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(666), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85491] = 3, + [84692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, + ACTIONS(2550), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(2548), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101272,17 +100775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85534] = 3, + [84735] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1618), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101295,14 +100798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101312,19 +100815,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85577] = 3, + [84778] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(2554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101333,16 +100837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101352,37 +100855,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85620] = 3, + [84821] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101392,157 +100896,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85663] = 3, + [84866] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(668), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [85706] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2518), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2516), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(666), 15, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85749] = 3, + [84913] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 5, - anon_sym_as, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 29, + ACTIONS(679), 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_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(666), 15, + anon_sym_RPAREN, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85792] = 3, + [84960] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, + ACTIONS(2564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101552,37 +101020,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85835] = 3, + [85003] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2538), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2536), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101592,37 +101060,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85878] = 3, + [85046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, - anon_sym_as, + ACTIONS(2452), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 29, + ACTIONS(2450), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101632,37 +101100,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85921] = 3, + [85089] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, + ACTIONS(279), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101672,25 +101141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [85964] = 7, - ACTIONS(1610), 1, + [85134] = 7, + ACTIONS(1611), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 2, + ACTIONS(1596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1600), 5, + ACTIONS(1609), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1598), 12, + ACTIONS(1588), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -101703,50 +101172,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1602), 12, + ACTIONS(1590), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [86015] = 3, + [85185] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(1531), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 29, + ACTIONS(1526), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101756,37 +101226,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86058] = 3, + [85230] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, + ACTIONS(1651), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101796,64 +101266,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86101] = 7, - ACTIONS(1610), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1605), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1600), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1598), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1602), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [86152] = 3, + [85273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(1651), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -101862,15 +101287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101880,77 +101306,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86195] = 3, + [85316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(1618), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [86238] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2526), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2524), 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_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -101960,37 +101346,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86281] = 3, + [85359] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(2468), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2466), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102000,17 +101386,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86324] = 3, + [85402] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, + ACTIONS(2546), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 29, + ACTIONS(2544), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102023,14 +101409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102040,37 +101426,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86367] = 3, + [85445] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, + ACTIONS(2542), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 29, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102080,37 +101466,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86410] = 3, + [85488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, - anon_sym_as, + ACTIONS(2534), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102120,37 +101506,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86453] = 3, + [85531] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102160,37 +101546,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86496] = 3, + [85574] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, - anon_sym_as, + ACTIONS(279), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102200,22 +101586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86539] = 4, + [85617] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1542), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1545), 5, + ACTIONS(1586), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 27, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -102223,15 +101607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102241,17 +101626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86584] = 3, + [85660] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, + ACTIONS(2530), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102264,14 +101649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102281,37 +101666,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86627] = 3, + [85703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 5, - anon_sym_as, + ACTIONS(2526), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 29, + ACTIONS(2524), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102321,7 +101706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86670] = 3, + [85746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -102334,24 +101719,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2520), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102361,37 +101746,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86713] = 3, + [85789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102401,17 +101786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86756] = 3, + [85832] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(279), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102424,14 +101809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102441,37 +101826,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86799] = 3, + [85875] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, + ACTIONS(1586), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 29, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102481,37 +101866,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86842] = 3, + [85918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, + ACTIONS(1633), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102521,37 +101906,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86885] = 3, + [85961] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, + ACTIONS(2518), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2516), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [86004] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2512), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102561,17 +101986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86928] = 3, + [86047] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, + ACTIONS(2456), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(2454), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102584,14 +102009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102601,37 +102026,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [86971] = 3, + [86090] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 5, - anon_sym_as, + ACTIONS(2522), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 29, + ACTIONS(2520), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102641,17 +102066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87014] = 3, + [86133] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, + ACTIONS(2460), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2458), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102664,14 +102089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102681,17 +102106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87057] = 3, + [86176] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2464), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2462), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102704,14 +102129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102721,19 +102146,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87100] = 3, + [86219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2510), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -102742,16 +102168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102761,37 +102186,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87143] = 3, + [86262] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(1655), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102801,37 +102226,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87186] = 3, + [86305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(2564), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102841,37 +102266,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87229] = 3, + [86348] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102881,17 +102306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87272] = 3, + [86391] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, + ACTIONS(2538), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(2536), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102904,14 +102329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102921,17 +102346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87315] = 3, + [86434] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, + ACTIONS(2560), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2558), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102944,14 +102369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -102961,53 +102386,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87358] = 3, + [86477] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1593), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1596), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1588), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87401] = 3, + [86524] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2518), 5, - anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, @@ -103016,22 +102443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103041,17 +102468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87444] = 3, + [86567] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + ACTIONS(2514), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 29, + ACTIONS(2512), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103064,14 +102491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103081,37 +102508,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87487] = 3, + [86610] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(2510), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103121,19 +102548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87530] = 3, + [86653] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2504), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -103142,16 +102570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103161,17 +102588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87573] = 3, + [86696] = 5, + ACTIONS(292), 1, + anon_sym_COLON_EQ, + ACTIONS(736), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103179,19 +102609,18 @@ 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103201,37 +102630,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87616] = 3, + [86743] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2560), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2558), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103241,38 +102670,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87659] = 4, + [86786] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1634), 5, - anon_sym_as, + ACTIONS(2550), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 27, + ACTIONS(2548), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103282,21 +102710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87704] = 4, - ACTIONS(1547), 1, + [86829] = 5, + ACTIONS(292), 1, anon_sym_COLON_EQ, + ACTIONS(736), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(279), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 28, + ACTIONS(277), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -103304,16 +102734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103323,78 +102752,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87749] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [86876] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(1593), 2, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, + ACTIONS(1596), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1588), 15, + 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87794] = 3, + [86923] = 5, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, + ACTIONS(2500), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1531), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1526), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103404,38 +102836,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87837] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [86970] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 28, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103445,17 +102876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87882] = 3, + [87013] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1607), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103468,14 +102899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103485,37 +102916,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87925] = 3, + [87056] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2504), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103525,37 +102956,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [87968] = 3, + [87099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_as, + ACTIONS(2514), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2512), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103565,79 +102996,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88011] = 5, + [87142] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(2452), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(2450), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 15, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88058] = 3, + [87185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 5, - anon_sym_as, + ACTIONS(2468), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2466), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103647,37 +103076,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88101] = 3, + [87228] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 5, - anon_sym_as, + ACTIONS(2546), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2544), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103687,37 +103116,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88144] = 3, + [87271] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 5, - anon_sym_as, + ACTIONS(2542), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103727,37 +103156,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88187] = 3, + [87314] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2534), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103767,37 +103196,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88230] = 3, + [87357] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 5, - anon_sym_as, + ACTIONS(2530), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103807,122 +103236,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88273] = 5, + [87400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1625), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, - anon_sym_RPAREN, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88320] = 5, + [87443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1643), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1638), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, - anon_sym_RPAREN, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88367] = 4, + [87486] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1617), 5, - anon_sym_as, + ACTIONS(2526), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 27, + ACTIONS(2524), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -103932,59 +103356,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88412] = 5, + [87529] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2456), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2454), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88459] = 3, + [87572] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 5, + ACTIONS(2452), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 29, + ACTIONS(2450), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103997,14 +103419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104014,38 +103436,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88502] = 5, + [87615] = 7, + ACTIONS(1611), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_as, + ACTIONS(1596), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1609), 5, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(674), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1588), 12, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_not, anon_sym_and, @@ -104056,17 +103467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88549] = 3, + ACTIONS(1590), 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, + [87666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 5, + ACTIONS(2468), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 29, + ACTIONS(2466), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104079,14 +103503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104096,37 +103520,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88592] = 3, + [87709] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 5, - anon_sym_as, + ACTIONS(2460), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 29, + ACTIONS(2458), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104136,37 +103560,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88635] = 3, + [87752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, + ACTIONS(2464), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(2462), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104176,17 +103600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88678] = 3, + [87795] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1643), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(1638), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104199,14 +103623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104216,17 +103640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88721] = 3, + [87838] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(1625), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104239,14 +103663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104256,19 +103680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88764] = 3, + [87881] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(2452), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(2450), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104277,16 +103702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104296,37 +103720,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88807] = 3, + [87924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 5, - anon_sym_as, + ACTIONS(2560), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2558), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104336,37 +103760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88850] = 3, + [87967] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 5, - anon_sym_as, + ACTIONS(1607), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104376,79 +103800,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88893] = 5, + [88010] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2546), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2544), 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_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88940] = 3, + [88053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(2468), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(2466), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104458,80 +103880,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [88983] = 5, + [88096] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2546), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2544), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89030] = 4, + [88139] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1605), 5, - anon_sym_as, + ACTIONS(1625), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(1620), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104541,37 +103960,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89075] = 3, + [88182] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 5, - anon_sym_as, + ACTIONS(1643), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(1638), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104581,37 +104000,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89118] = 3, + [88225] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2542), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104621,37 +104040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89161] = 3, + [88268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 5, + ACTIONS(2534), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104661,37 +104080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89204] = 3, + [88311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, + ACTIONS(2538), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2536), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104701,20 +104120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89247] = 3, + [88354] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104723,15 +104141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104741,61 +104160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89290] = 4, + [88397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(314), 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, - [89335] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2572), 5, + ACTIONS(2542), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -104804,15 +104181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104822,37 +104200,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89378] = 3, + [88440] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 5, + ACTIONS(2534), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104862,37 +104240,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89421] = 3, + [88483] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 5, + ACTIONS(2526), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(2524), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104902,37 +104280,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89464] = 3, + [88526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 5, + ACTIONS(2530), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104942,37 +104320,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89507] = 3, + [88569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 5, + ACTIONS(2526), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2524), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -104982,38 +104360,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89550] = 4, + [88612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1598), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1605), 5, - anon_sym_as, + ACTIONS(1655), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 27, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105023,37 +104400,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89595] = 3, + [88655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 5, + ACTIONS(2564), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105063,17 +104440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89638] = 3, + [88698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 5, + ACTIONS(1618), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105086,54 +104463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [89681] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1665), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1663), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105143,29 +104480,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89724] = 4, + [88741] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1620), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(279), 13, + ACTIONS(1625), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(314), 18, + ACTIONS(1627), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -105184,37 +104521,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [89769] = 3, + [88786] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 5, + ACTIONS(1588), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1593), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 29, + ACTIONS(1590), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105224,79 +104562,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89812] = 5, + [88831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1608), 3, + ACTIONS(2456), 5, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1602), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1598), 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [89859] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1669), 5, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(2454), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105306,17 +104602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89902] = 3, + [88874] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 5, + ACTIONS(1607), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -105329,14 +104625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105346,37 +104642,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89945] = 3, + [88917] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2322), 4, + ACTIONS(2456), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2320), 30, - sym_string_start, + ACTIONS(2454), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105386,39 +104682,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [89988] = 5, + [88960] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, + ACTIONS(1596), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, + ACTIONS(1588), 15, + anon_sym_RPAREN, 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, @@ -105428,37 +104724,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90035] = 3, + [89007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + ACTIONS(2460), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 29, + ACTIONS(2458), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105468,104 +104764,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90078] = 5, + [89050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(2464), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(2462), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90125] = 5, + [89093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(2460), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(2458), 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_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 15, - anon_sym_RPAREN, - 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90172] = 3, + [89136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, + ACTIONS(2464), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 29, + ACTIONS(2462), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -105574,15 +104865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105592,37 +104884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90215] = 3, + [89179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 5, + ACTIONS(2530), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105632,37 +104924,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90258] = 3, + [89222] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, - anon_sym_as, + ACTIONS(1633), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105672,37 +104964,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90301] = 3, + [89265] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 5, + ACTIONS(1615), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1618), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 29, + ACTIONS(1613), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105712,37 +105005,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90344] = 3, + [89310] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, - anon_sym_as, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105752,21 +105045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90387] = 3, + [89353] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 5, + ACTIONS(1528), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1531), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 29, + ACTIONS(1526), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -105775,14 +105069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105792,37 +105086,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90430] = 3, + [89398] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105832,29 +105126,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90473] = 4, + [89441] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, + ACTIONS(1638), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1645), 13, + ACTIONS(1643), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1649), 18, + ACTIONS(1647), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -105873,60 +105167,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [90518] = 3, + [89486] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(1526), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1531), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [90561] = 3, + ACTIONS(1542), 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, + [89531] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 5, + ACTIONS(1640), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1643), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(1638), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -105934,16 +105231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -105953,112 +105249,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90604] = 5, + [89576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(1655), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1608), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90651] = 4, + [89619] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1612), 3, + ACTIONS(1613), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1617), 13, + ACTIONS(1618), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1556), 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, - [90696] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1540), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1545), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1556), 18, + ACTIONS(1542), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -106077,37 +105330,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [90741] = 3, + [89664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 5, + ACTIONS(2560), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 29, + ACTIONS(2558), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106117,20 +105370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90784] = 3, + [89707] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2550), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2548), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -106139,15 +105391,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106157,37 +105410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90827] = 3, + [89750] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1633), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106197,37 +105450,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90870] = 3, + [89793] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 5, - anon_sym_as, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106237,79 +105490,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [90913] = 4, + [89836] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1634), 13, + ACTIONS(1618), 5, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1638), 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, - [90958] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1642), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1645), 5, - anon_sym_as, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 27, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106319,18 +105530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91003] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [89879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(1586), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -106338,18 +105548,19 @@ 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_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106359,16 +105570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91047] = 3, + [89922] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 4, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1540), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106376,19 +105588,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106398,16 +105610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91089] = 3, + [89965] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 4, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106415,19 +105628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106437,18 +105650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91131] = 3, + [90008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 4, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1663), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -106457,16 +105672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106476,37 +105690,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91173] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90051] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(1651), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106516,37 +105730,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91217] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(2321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(2319), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106556,76 +105770,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91261] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [90137] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(666), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91305] = 5, + [90184] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(668), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 2, + ACTIONS(671), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(679), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, + ACTIONS(666), 15, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_RBRACK, anon_sym_not, @@ -106637,38 +105854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91351] = 5, + [90231] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 2, + ACTIONS(1593), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(679), 2, + ACTIONS(1596), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 14, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 15, + ACTIONS(1588), 15, + anon_sym_RPAREN, 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, @@ -106678,16 +105896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91397] = 3, + [90278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 4, + ACTIONS(2418), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1659), 29, + ACTIONS(2416), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106700,14 +105919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106717,36 +105936,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91439] = 3, + [90321] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 4, + ACTIONS(1622), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1625), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1651), 29, + ACTIONS(1620), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106756,36 +105977,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91481] = 3, + [90366] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 4, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106795,77 +106017,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91523] = 5, + [90409] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(279), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 14, + ACTIONS(277), 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_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91569] = 4, - ACTIONS(1547), 1, - anon_sym_COLON_EQ, + [90452] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(2522), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(2520), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106875,17 +106097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [91613] = 3, + [90495] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(1655), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(1653), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106898,14 +106119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106915,36 +106136,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91655] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90537] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(1607), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(1605), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106954,17 +106175,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [91699] = 3, + [90579] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 4, + ACTIONS(1633), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -106977,14 +106197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -106994,36 +106214,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91741] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90621] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(2550), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(2548), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107033,17 +106253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [91785] = 3, + [90663] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2498), 4, + ACTIONS(2560), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2496), 29, + ACTIONS(2558), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107056,14 +106275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107073,37 +106292,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91827] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90705] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(2464), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(2462), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107113,37 +106331,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91871] = 4, - ACTIONS(292), 1, - anon_sym_COLON_EQ, + [90747] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(676), 4, + ACTIONS(2460), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(709), 28, + ACTIONS(2458), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107153,58 +106370,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [91915] = 6, + [90789] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(1586), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1600), 5, + ACTIONS(1584), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1598), 12, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - ACTIONS(1602), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [91963] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [90831] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 4, + ACTIONS(1586), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1667), 29, + ACTIONS(1584), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107217,14 +106431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107234,16 +106448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92005] = 3, + [90873] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2534), 4, + ACTIONS(1651), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2532), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107256,14 +106470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107273,16 +106487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92047] = 3, + [90915] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2522), 4, + ACTIONS(1651), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2520), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107295,14 +106509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107312,16 +106526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92089] = 3, + [90957] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2572), 4, + ACTIONS(2456), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2570), 29, + ACTIONS(2454), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107334,14 +106548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107351,16 +106565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92131] = 3, + [90999] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2502), 4, + ACTIONS(2526), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2500), 29, + ACTIONS(2524), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107373,14 +106587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107390,16 +106604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92173] = 3, + [91041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2510), 4, + ACTIONS(2530), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2508), 29, + ACTIONS(2528), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107412,14 +106626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107429,16 +106643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92215] = 3, + [91083] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2514), 4, + ACTIONS(2534), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2512), 29, + ACTIONS(2532), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107451,14 +106665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107468,16 +106682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92257] = 3, + [91125] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2518), 4, + ACTIONS(2542), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2516), 29, + ACTIONS(2540), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107490,14 +106704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107507,16 +106721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92299] = 3, + [91167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2568), 4, + ACTIONS(2546), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2566), 29, + ACTIONS(2544), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107529,14 +106743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107546,16 +106760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92341] = 3, + [91209] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2576), 4, + ACTIONS(2468), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2574), 29, + ACTIONS(2466), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107568,14 +106782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107585,16 +106799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92383] = 3, + [91251] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 4, + ACTIONS(2452), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 29, + ACTIONS(2450), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107607,14 +106821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107624,16 +106838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92425] = 3, + [91293] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 4, + ACTIONS(2504), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1629), 29, + ACTIONS(2502), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107646,14 +106860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107663,16 +106877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92467] = 3, + [91335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2526), 4, + ACTIONS(2510), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2524), 29, + ACTIONS(2508), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107685,14 +106899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107702,16 +106916,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92509] = 3, + [91377] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2530), 4, + ACTIONS(2514), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2528), 29, + ACTIONS(2512), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107724,14 +106938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107741,59 +106955,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92551] = 7, - ACTIONS(1610), 1, - anon_sym_EQ, + [91419] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, + ACTIONS(2518), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1608), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1600), 4, + ACTIONS(2516), 29, anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1598), 12, anon_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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - ACTIONS(1602), 12, + [91461] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2538), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2536), 29, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [92601] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2564), 4, + ACTIONS(2554), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2562), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107806,14 +107055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107823,16 +107072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92643] = 3, + [91545] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2560), 4, + ACTIONS(2564), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 29, + ACTIONS(2562), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107845,14 +107094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107862,16 +107111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92685] = 3, + [91587] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 4, + ACTIONS(2522), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(277), 29, + ACTIONS(2520), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -107884,14 +107133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107901,36 +107150,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92727] = 3, + [91629] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2506), 4, + ACTIONS(668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2504), 29, + ACTIONS(679), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107940,36 +107190,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92769] = 3, + [91673] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2556), 4, + ACTIONS(668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2554), 29, + ACTIONS(679), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -107979,36 +107230,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92811] = 3, + [91717] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 4, + ACTIONS(1593), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1590), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108018,16 +107270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92853] = 3, + [91761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108040,14 +107292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108057,16 +107309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92895] = 3, + [91803] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 4, + ACTIONS(279), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1612), 29, + ACTIONS(277), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108079,33 +107331,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91845] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(668), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(671), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(679), 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(666), 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_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [91891] = 7, + ACTIONS(1611), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1593), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1588), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1590), 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, + [91941] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(668), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(671), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(679), 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(666), 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_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92937] = 3, + [91987] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(1531), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1526), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108118,14 +107495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108135,36 +107512,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [92979] = 3, + [92029] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2538), 4, + ACTIONS(668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2536), 29, + ACTIONS(679), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108174,248 +107552,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93021] = 3, + [92073] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 13, + ACTIONS(668), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(679), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1663), 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, - [93062] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92117] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1640), 3, + ACTIONS(1593), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1590), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1645), 13, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1649), 16, + ACTIONS(1588), 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, - [93105] = 4, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92163] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1629), 3, + ACTIONS(1593), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1590), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1634), 13, - anon_sym_STAR, + 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_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1638), 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, - [93148] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92207] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 13, + ACTIONS(1625), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1620), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1655), 19, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92249] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 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_EQ, + anon_sym_in, + anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [93189] = 4, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1618), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1613), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(314), 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, - [93232] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [92333] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(277), 3, + ACTIONS(1593), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1609), 5, anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1588), 12, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + ACTIONS(1590), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(279), 13, - anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(314), 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, - [93275] = 3, + [92381] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(679), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108426,14 +107854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108443,17 +107872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - anon_sym_RBRACE, - [93316] = 3, + [92425] = 4, + ACTIONS(292), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(668), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(679), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108463,16 +107893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108482,19 +107912,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93357] = 3, + [92469] = 4, + ACTIONS(1533), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 4, + ACTIONS(1593), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1602), 28, + ACTIONS(1590), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -108503,14 +107934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -108520,29 +107952,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [93398] = 4, + [92513] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1602), 3, + ACTIONS(679), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1605), 13, + ACTIONS(668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1598), 16, + ACTIONS(666), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -108559,32 +107991,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93441] = 4, + [92556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1540), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1545), 13, + ACTIONS(1655), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1556), 16, + ACTIONS(1653), 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, @@ -108598,29 +108029,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93484] = 4, + [92597] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1612), 3, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1617), 13, + ACTIONS(279), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1556), 16, + ACTIONS(316), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -108637,32 +108068,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93527] = 4, + [92640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(709), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(676), 13, + ACTIONS(1607), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 16, + ACTIONS(1605), 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, @@ -108676,32 +108106,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93570] = 4, + [92681] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(709), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(676), 13, + ACTIONS(1633), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(674), 16, + ACTIONS(1631), 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, @@ -108715,25 +108144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93613] = 3, + [92722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 13, + ACTIONS(1586), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1667), 19, + ACTIONS(1584), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108753,25 +108182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93654] = 3, + [92763] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1669), 13, + ACTIONS(1586), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1667), 19, + ACTIONS(1584), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108791,25 +108220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93695] = 3, + [92804] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1665), 13, + ACTIONS(1651), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1663), 19, + ACTIONS(1649), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108829,25 +108258,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93736] = 3, + [92845] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1661), 13, + ACTIONS(1651), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1659), 19, + ACTIONS(1649), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -108867,31 +108296,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93777] = 3, + [92886] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 13, + ACTIONS(679), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(668), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1651), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(666), 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, @@ -108905,595 +108335,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [93818] = 8, - ACTIONS(2590), 1, - anon_sym_EQ, - ACTIONS(2592), 1, - anon_sym_not, - ACTIONS(2598), 1, - anon_sym_is, - STATE(1517), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2595), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2587), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [93860] = 8, - ACTIONS(2205), 1, - anon_sym_not, - ACTIONS(2217), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_EQ, - STATE(1517), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2215), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2195), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [93902] = 4, + [92929] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(277), 14, + ACTIONS(277), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(279), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [93934] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 5, + ACTIONS(316), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(277), 14, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [92972] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1590), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1593), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [93966] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 5, + ACTIONS(1588), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1640), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [93998] = 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, + [93015] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 2, + ACTIONS(1593), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1638), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1629), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1590), 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_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94030] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1540), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_PLUS, - anon_sym_DASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94062] = 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [93056] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1617), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1612), 14, + ACTIONS(1620), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1625), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94094] = 8, - ACTIONS(2590), 1, - anon_sym_EQ, - ACTIONS(2608), 1, - anon_sym_not, - ACTIONS(2614), 1, - anon_sym_is, - STATE(1525), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2611), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2605), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94134] = 8, - ACTIONS(2340), 1, - anon_sym_not, - ACTIONS(2352), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_EQ, - STATE(1528), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2350), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2332), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94174] = 8, - ACTIONS(2446), 1, - anon_sym_not, - ACTIONS(2458), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_EQ, - STATE(1525), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2456), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2438), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 9, - anon_sym_DOT, + ACTIONS(1627), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94214] = 8, - ACTIONS(2590), 1, anon_sym_EQ, - ACTIONS(2620), 1, - anon_sym_not, - ACTIONS(2626), 1, - anon_sym_is, - STATE(1528), 1, - aux_sym_comparison_operator_repeat1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [93099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2623), 2, + ACTIONS(1593), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2617), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 9, + ACTIONS(1590), 28, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE, - [94254] = 7, - ACTIONS(2480), 1, - anon_sym_not, - ACTIONS(2492), 1, - anon_sym_is, - STATE(1532), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2490), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2472), 6, anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - [94291] = 8, - ACTIONS(2590), 1, - anon_sym_EQ, - ACTIONS(2632), 1, + anon_sym_PLUS, anon_sym_not, - ACTIONS(2638), 1, - anon_sym_is, - STATE(1530), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2635), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2629), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [94330] = 8, - ACTIONS(2302), 1, - anon_sym_not, - ACTIONS(2314), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_as, - STATE(1533), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2312), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2294), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2601), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [94369] = 7, - ACTIONS(2644), 1, - anon_sym_not, - ACTIONS(2650), 1, anon_sym_is, - STATE(1532), 1, - aux_sym_comparison_operator_repeat1, + [93140] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2647), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2641), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 9, + ACTIONS(1613), 3, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1618), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - [94406] = 8, - ACTIONS(2590), 1, - anon_sym_as, - ACTIONS(2656), 1, - anon_sym_not, - ACTIONS(2662), 1, - anon_sym_is, - STATE(1533), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2659), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2653), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [94445] = 8, - ACTIONS(2266), 1, - anon_sym_not, - ACTIONS(2278), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_EQ, - STATE(1530), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2276), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2258), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 8, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [94484] = 8, - ACTIONS(2590), 1, - anon_sym_as, - ACTIONS(2668), 1, - anon_sym_not, - ACTIONS(2674), 1, - anon_sym_is, - STATE(1535), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2671), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2665), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [94522] = 4, - ACTIONS(2679), 1, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1542), 16, anon_sym_COMMA, - STATE(1536), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2677), 17, - sym__newline, - anon_sym_SEMI, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -109509,17 +108567,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94552] = 4, - ACTIONS(2682), 1, - anon_sym_COMMA, - STATE(1536), 1, - aux_sym__patterns_repeat1, + [93183] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(978), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(1526), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1531), 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(1542), 16, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -109535,12721 +108606,19119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [94582] = 8, - ACTIONS(2590), 1, - anon_sym_as, - ACTIONS(2687), 1, - anon_sym_not, - ACTIONS(2693), 1, - anon_sym_is, - STATE(1538), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2690), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2684), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2585), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [94620] = 4, + [93226] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, + ACTIONS(1593), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1598), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1540), 14, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1590), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94650] = 8, - ACTIONS(2373), 1, - anon_sym_not, - ACTIONS(2385), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_as, - STATE(1535), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2383), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2365), 6, - anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(2601), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [94688] = 4, + anon_sym_is, + [93267] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, + ACTIONS(1638), 3, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1643), 13, + anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, - anon_sym_PLUS, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [94718] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2696), 3, - anon_sym_RPAREN, + ACTIONS(1647), 16, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1540), 14, - anon_sym_DOT, + 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, + [93310] = 20, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2571), 1, + sym_identifier, + ACTIONS(2573), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2575), 1, + anon_sym_STAR, + ACTIONS(2577), 1, + anon_sym_if, + ACTIONS(2579), 1, + anon_sym_COLON, + ACTIONS(2581), 1, anon_sym_STAR_STAR, + ACTIONS(2583), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2585), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94748] = 4, - ACTIONS(3), 2, - sym_comment, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2160), 1, + sym_case_pattern, + STATE(2755), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1360), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2210), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2587), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1974), 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, + [93384] = 20, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2571), 1, + sym_identifier, + ACTIONS(2573), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2575), 1, + anon_sym_STAR, + ACTIONS(2577), 1, + anon_sym_if, + ACTIONS(2581), 1, anon_sym_STAR_STAR, + ACTIONS(2583), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2585), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94778] = 4, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2595), 1, + anon_sym_COLON, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2160), 1, + sym_case_pattern, + STATE(2714), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1360), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2210), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2587), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1974), 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, + [93458] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2601), 1, + anon_sym_RPAREN, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94808] = 8, - ACTIONS(2416), 1, - anon_sym_not, - ACTIONS(2428), 1, - anon_sym_is, - ACTIONS(2603), 1, - anon_sym_as, - STATE(1538), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2426), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2408), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(2601), 7, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [94846] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2127), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [93526] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2629), 1, + anon_sym_RBRACK, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94876] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [93594] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94905] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2641), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1540), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [93662] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94934] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2643), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1540), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [93730] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94963] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2645), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1640), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [93798] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [94992] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2647), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1640), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [93866] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95021] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2649), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1617), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [93934] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95050] = 2, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2651), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 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, - [95075] = 13, - ACTIONS(2286), 1, - anon_sym_DOT, - ACTIONS(2298), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94002] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2653), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95122] = 13, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2412), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94070] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2655), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95169] = 13, - ACTIONS(2387), 1, - anon_sym_DOT, - ACTIONS(2389), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94138] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2657), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95216] = 13, - ACTIONS(2432), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94206] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, - ACTIONS(2464), 1, - anon_sym_DOT, - ACTIONS(2476), 1, + ACTIONS(2627), 1, anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2659), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94274] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95263] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2661), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2141), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1617), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94342] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95292] = 13, - ACTIONS(2324), 1, - anon_sym_DOT, - ACTIONS(2336), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2663), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94410] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2623), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2625), 1, + anon_sym_STAR_STAR, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95339] = 2, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2665), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 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, - [95364] = 4, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94478] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2667), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1629), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94546] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95393] = 13, - ACTIONS(2250), 1, - anon_sym_DOT, - ACTIONS(2262), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2669), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94614] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2623), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2625), 1, + anon_sym_STAR_STAR, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95440] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2671), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2187), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94682] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95469] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2673), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2198), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(674), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94750] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95498] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2675), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2199), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1649), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1640), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94818] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95527] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2677), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [94886] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95556] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2679), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1617), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1612), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [94954] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95585] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2681), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95022] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95614] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2683), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2140), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [95090] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95643] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2685), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2155), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1598), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1540), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95158] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95672] = 2, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2687), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 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, - [95697] = 13, - ACTIONS(2432), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95226] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, - ACTIONS(2700), 1, - anon_sym_DOT, - ACTIONS(2702), 1, + ACTIONS(2607), 1, anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2689), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2223), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95294] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95744] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2691), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95362] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95773] = 2, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2693), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2704), 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, - [95798] = 4, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95430] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2695), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1629), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95498] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95827] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2697), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2192), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(314), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95566] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95856] = 13, - ACTIONS(2357), 1, - anon_sym_DOT, - ACTIONS(2369), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2699), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95903] = 13, - ACTIONS(2430), 1, - anon_sym_DOT, - ACTIONS(2432), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95634] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - ACTIONS(2440), 1, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(2442), 1, + ACTIONS(2607), 1, anon_sym_LBRACK, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2701), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95702] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [95950] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2703), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2213), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1360), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95770] = 18, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, + sym_identifier, + ACTIONS(2621), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, anon_sym_STAR_STAR, + ACTIONS(2627), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2631), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [95979] = 4, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2705), 1, + anon_sym_RBRACK, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2212), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1360), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(277), 14, - anon_sym_DOT, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [95838] = 18, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96008] = 4, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2707), 1, + anon_sym_RPAREN, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2205), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1634), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1629), 14, - anon_sym_DOT, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [95906] = 17, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(2709), 1, + sym_identifier, + ACTIONS(2711), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, anon_sym_STAR_STAR, + ACTIONS(2717), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2719), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96037] = 4, + ACTIONS(2723), 1, + anon_sym_LBRACE, + ACTIONS(2725), 1, + sym_integer, + ACTIONS(2727), 1, + sym_float, + STATE(1895), 1, + sym_string, + STATE(2026), 1, + sym_dotted_name, + STATE(2322), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1556), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1540), 14, - anon_sym_DOT, + STATE(2473), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2721), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2025), 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, + [95971] = 17, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2571), 1, + sym_identifier, + ACTIONS(2573), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2575), 1, + anon_sym_STAR, + ACTIONS(2581), 1, anon_sym_STAR_STAR, + ACTIONS(2583), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2585), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96066] = 4, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + STATE(1808), 1, + sym_string, + STATE(1975), 1, + sym_case_pattern, + STATE(1976), 1, + sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2696), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1540), 14, - anon_sym_DOT, + STATE(2210), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2587), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1974), 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, + [96036] = 17, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2597), 1, + sym_identifier, + ACTIONS(2599), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, anon_sym_STAR_STAR, + ACTIONS(2607), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_PLUS, + ACTIONS(2609), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [96095] = 13, - ACTIONS(2187), 1, - anon_sym_DOT, - ACTIONS(2201), 1, - anon_sym_LBRACK, - ACTIONS(2432), 1, - anon_sym_LPAREN, - ACTIONS(2440), 1, - anon_sym_STAR_STAR, - ACTIONS(2450), 1, - anon_sym_PIPE, - ACTIONS(2452), 1, - anon_sym_AMP, - ACTIONS(2454), 1, - anon_sym_CARET, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + STATE(2329), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2434), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2436), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2448), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1445), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [96142] = 13, - ACTIONS(2706), 1, + STATE(2472), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2611), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2038), 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, + [96101] = 17, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2619), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2621), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2623), 1, anon_sym_STAR, - ACTIONS(2712), 1, - anon_sym_COLON, - ACTIONS(2714), 1, + ACTIONS(2625), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2413), 1, - sym_lambda_parameters, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + STATE(2509), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96188] = 13, - ACTIONS(2706), 1, + STATE(2374), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2633), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2061), 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, + [96166] = 17, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2571), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2575), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2581), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2718), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2488), 1, - sym_lambda_parameters, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2160), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96234] = 13, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, + STATE(2210), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2587), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1974), 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, + [96231] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2720), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2357), 1, - sym_lambda_parameters, - STATE(2397), 1, - sym__parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2733), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96280] = 2, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96297] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2735), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 17, - 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, - [96304] = 13, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96363] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2722), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2391), 1, - sym_lambda_parameters, - STATE(2397), 1, - sym__parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2737), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96350] = 2, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96429] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2739), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2704), 17, - 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, - [96374] = 13, - ACTIONS(2706), 1, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96495] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2741), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96561] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2724), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2496), 1, - sym_lambda_parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2743), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96420] = 13, - ACTIONS(2706), 1, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96627] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2745), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2052), 1, + sym_splat_pattern, + STATE(2321), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96693] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2726), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2392), 1, - sym_lambda_parameters, - STATE(2397), 1, - sym__parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2747), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2079), 1, + sym_splat_pattern, + STATE(2399), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96466] = 13, - ACTIONS(2706), 1, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96759] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2749), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2126), 1, + sym_splat_pattern, + STATE(2420), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96825] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2728), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2462), 1, - sym_lambda_parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2751), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2062), 1, + sym_splat_pattern, + STATE(2341), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96512] = 13, - ACTIONS(2706), 1, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96891] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, sym_identifier, - ACTIONS(2708), 1, + ACTIONS(2753), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [96957] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, anon_sym_LPAREN, - ACTIONS(2710), 1, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, anon_sym_STAR, - ACTIONS(2714), 1, + ACTIONS(2715), 1, anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2730), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2506), 1, - sym_lambda_parameters, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2755), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96558] = 2, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97023] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2757), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97089] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2759), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97155] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2761), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97221] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2763), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97287] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2765), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97353] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2767), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97419] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2769), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97485] = 18, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(2771), 1, + anon_sym_RBRACE, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97551] = 17, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2729), 1, + sym_identifier, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + STATE(2178), 1, + sym_splat_pattern, + STATE(2574), 1, + sym__key_value_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2731), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2414), 8, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [97614] = 15, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(2711), 1, + anon_sym_LPAREN, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2719), 1, + anon_sym_DASH, + ACTIONS(2723), 1, + anon_sym_LBRACE, + ACTIONS(2725), 1, + sym_integer, + ACTIONS(2727), 1, + sym_float, + ACTIONS(2773), 1, + sym_identifier, + STATE(1895), 1, + sym_string, + STATE(2026), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2775), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2018), 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, + [97672] = 15, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2777), 1, + sym_identifier, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2779), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2053), 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, + [97730] = 15, + ACTIONS(770), 1, + sym_string_start, + ACTIONS(2599), 1, + anon_sym_LPAREN, + ACTIONS(2603), 1, + anon_sym_STAR, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2607), 1, + anon_sym_LBRACK, + ACTIONS(2609), 1, + anon_sym_DASH, + ACTIONS(2613), 1, + anon_sym_LBRACE, + ACTIONS(2615), 1, + sym_integer, + ACTIONS(2617), 1, + sym_float, + ACTIONS(2777), 1, + sym_identifier, + STATE(1867), 1, + sym_string, + STATE(2037), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2781), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2059), 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, + [97788] = 15, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2575), 1, + anon_sym_STAR, + ACTIONS(2581), 1, + anon_sym_STAR_STAR, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2729), 1, + sym_identifier, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2783), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1953), 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, + [97846] = 15, + ACTIONS(702), 1, + sym_string_start, + ACTIONS(2711), 1, + anon_sym_LPAREN, + ACTIONS(2713), 1, + anon_sym_STAR, + ACTIONS(2715), 1, + anon_sym_STAR_STAR, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2719), 1, + anon_sym_DASH, + ACTIONS(2723), 1, + anon_sym_LBRACE, + ACTIONS(2725), 1, + sym_integer, + ACTIONS(2727), 1, + sym_float, + ACTIONS(2773), 1, + sym_identifier, + STATE(1895), 1, + sym_string, + STATE(2026), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2785), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2023), 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, + [97904] = 15, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, + anon_sym_STAR_STAR, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2787), 1, + sym_identifier, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2789), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2097), 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, + [97962] = 15, + ACTIONS(324), 1, + sym_string_start, + ACTIONS(2573), 1, + anon_sym_LPAREN, + ACTIONS(2575), 1, + anon_sym_STAR, + ACTIONS(2581), 1, + anon_sym_STAR_STAR, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_DASH, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + sym_integer, + ACTIONS(2593), 1, + sym_float, + ACTIONS(2729), 1, + sym_identifier, + STATE(1808), 1, + sym_string, + STATE(1976), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2791), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(1981), 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, + [98020] = 15, + ACTIONS(814), 1, + sym_string_start, + ACTIONS(2621), 1, + anon_sym_LPAREN, + ACTIONS(2623), 1, + anon_sym_STAR, + ACTIONS(2625), 1, + anon_sym_STAR_STAR, + ACTIONS(2627), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2637), 1, + sym_integer, + ACTIONS(2639), 1, + sym_float, + ACTIONS(2787), 1, + sym_identifier, + STATE(1903), 1, + sym_string, + STATE(2125), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2793), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2085), 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, + [98078] = 8, + ACTIONS(2800), 1, + anon_sym_EQ, + ACTIONS(2802), 1, + anon_sym_not, + ACTIONS(2808), 1, + anon_sym_is, + STATE(1580), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2805), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2797), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98120] = 8, + ACTIONS(2202), 1, + anon_sym_not, + ACTIONS(2210), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_EQ, + STATE(1580), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2208), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2188), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98162] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1647), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1638), 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, + [98194] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(277), 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, + [98226] = 8, + ACTIONS(2376), 1, + anon_sym_not, + ACTIONS(2384), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_EQ, + STATE(1586), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2382), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2364), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98266] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(277), 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, + [98298] = 8, + ACTIONS(2800), 1, + anon_sym_EQ, + ACTIONS(2818), 1, + anon_sym_not, + ACTIONS(2824), 1, + anon_sym_is, + STATE(1586), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2821), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2815), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98338] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1526), 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, + [98370] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1620), 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, + [98402] = 8, + ACTIONS(2800), 1, + anon_sym_EQ, + ACTIONS(2830), 1, + anon_sym_not, + ACTIONS(2836), 1, + anon_sym_is, + STATE(1589), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2827), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98442] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1618), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1613), 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, + [98474] = 8, + ACTIONS(2346), 1, + anon_sym_not, + ACTIONS(2354), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_EQ, + STATE(1589), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2352), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2334), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [98514] = 8, + ACTIONS(2800), 1, + anon_sym_as, + ACTIONS(2842), 1, + anon_sym_not, + ACTIONS(2848), 1, + anon_sym_is, + STATE(1592), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2845), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2839), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 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, + [98553] = 7, + ACTIONS(2490), 1, + anon_sym_not, + ACTIONS(2498), 1, + anon_sym_is, + STATE(1597), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2496), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2478), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 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, + [98590] = 8, + ACTIONS(2285), 1, + anon_sym_not, + ACTIONS(2293), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_as, + STATE(1592), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2291), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2273), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 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, + [98629] = 8, + ACTIONS(2800), 1, + anon_sym_EQ, + ACTIONS(2854), 1, + anon_sym_not, + ACTIONS(2860), 1, + anon_sym_is, + STATE(1595), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2857), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2851), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 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, + [98668] = 8, + ACTIONS(2240), 1, + anon_sym_not, + ACTIONS(2248), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_EQ, + STATE(1595), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2246), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2228), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 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, + [98707] = 7, + ACTIONS(2866), 1, + anon_sym_not, + ACTIONS(2872), 1, + anon_sym_is, + STATE(1597), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2869), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2863), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 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, + [98744] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1348), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [98774] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(666), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [98804] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1588), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1526), 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, + [98834] = 8, + ACTIONS(2440), 1, + anon_sym_not, + ACTIONS(2448), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_as, + STATE(1609), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2446), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2428), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [98872] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(666), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [98902] = 8, + ACTIONS(2800), 1, + anon_sym_as, + ACTIONS(2878), 1, + anon_sym_not, + ACTIONS(2884), 1, + anon_sym_is, + STATE(1603), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2875), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [98940] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1348), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [98970] = 4, + ACTIONS(2889), 1, + anon_sym_COMMA, + STATE(1605), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99000] = 4, + ACTIONS(2892), 1, + anon_sym_COMMA, + STATE(1605), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(970), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99030] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2894), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1526), 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, + [99060] = 8, + ACTIONS(2406), 1, + anon_sym_not, + ACTIONS(2414), 1, + anon_sym_is, + ACTIONS(2813), 1, + anon_sym_as, + STATE(1603), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2412), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2394), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2811), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [99098] = 8, + ACTIONS(2800), 1, + anon_sym_as, + ACTIONS(2899), 1, + anon_sym_not, + ACTIONS(2905), 1, + anon_sym_is, + STATE(1609), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2902), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2896), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(2795), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [99136] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1526), 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, + [99165] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1526), 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, + [99194] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1348), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [99223] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1348), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [99252] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 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, + [99281] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 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, + [99306] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(277), 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, + [99335] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1618), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 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, + [99364] = 13, + ACTIONS(2315), 1, + anon_sym_DOT, + ACTIONS(2317), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99411] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(2420), 1, + anon_sym_DOT, + ACTIONS(2432), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99458] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1618), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 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, + [99487] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1620), 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, + [99516] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1620), 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, + [99545] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1647), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1638), 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, + [99574] = 13, + ACTIONS(2180), 1, + anon_sym_DOT, + ACTIONS(2194), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99621] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1542), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1526), 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, + [99650] = 13, + ACTIONS(2265), 1, + anon_sym_DOT, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99697] = 13, + ACTIONS(2356), 1, + anon_sym_DOT, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2368), 1, + anon_sym_LBRACK, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99744] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1647), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1638), 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, + [99773] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2894), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1526), 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, + [99802] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1618), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1613), 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, + [99831] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2398), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99878] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1647), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1638), 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, + [99907] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(2482), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99954] = 13, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(2908), 1, + anon_sym_DOT, + ACTIONS(2910), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100001] = 13, + ACTIONS(2220), 1, + anon_sym_DOT, + ACTIONS(2232), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100048] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1531), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1588), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1526), 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, + [100077] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(666), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [100106] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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, + [100131] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(666), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(277), 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, + [100160] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(277), 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, + [100189] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(277), 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, + [100218] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 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, + [100243] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 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, + [100268] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(277), 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, + [100297] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(279), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(316), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(277), 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, + [100326] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1627), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1620), 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, + [100355] = 13, + ACTIONS(2326), 1, + anon_sym_DOT, + ACTIONS(2338), 1, + anon_sym_LBRACK, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_STAR_STAR, + ACTIONS(2374), 1, + anon_sym_PIPE, + ACTIONS(2378), 1, + anon_sym_AMP, + ACTIONS(2380), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2360), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2362), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2372), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1315), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [100402] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2922), 1, + anon_sym_COLON, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2726), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100448] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2928), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2799), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100494] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2930), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2796), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100540] = 6, + ACTIONS(2932), 1, + anon_sym_COMMA, + ACTIONS(2934), 1, + anon_sym_COLON, + ACTIONS(2936), 1, + anon_sym_EQ, + STATE(1606), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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, + [100572] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2940), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2723), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100618] = 4, + ACTIONS(2942), 1, + anon_sym_COMMA, + STATE(1653), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 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, + [100646] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2945), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2624), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100692] = 5, + ACTIONS(2934), 1, + anon_sym_COLON, + ACTIONS(2936), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2947), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2938), 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, + [100722] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2949), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2732), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100768] = 4, + ACTIONS(2951), 1, + anon_sym_COMMA, + STATE(1653), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(970), 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, + [100796] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2953), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2633), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100842] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 17, + 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, + [100866] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 17, + 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, + [100890] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2912), 17, + 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, + [100914] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2955), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2776), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100960] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1542), 17, + 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, + [100984] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2957), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2749), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101030] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2959), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2635), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101076] = 6, + ACTIONS(2934), 1, + anon_sym_COLON, + ACTIONS(2936), 1, + anon_sym_EQ, + ACTIONS(2961), 1, + anon_sym_COMMA, + STATE(1657), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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, + [101108] = 13, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2963), 1, + anon_sym_COLON, + STATE(2429), 1, + sym_parameter, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2623), 1, + sym__parameters, + STATE(2672), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101154] = 12, + ACTIONS(2965), 1, + sym_identifier, + ACTIONS(2967), 1, + anon_sym_LPAREN, + ACTIONS(2969), 1, + anon_sym_RPAREN, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_STAR_STAR, + ACTIONS(2975), 1, + anon_sym_SLASH, + STATE(2266), 1, + sym_tuple_pattern, + STATE(2288), 1, + sym_parameter, + STATE(2699), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2268), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2532), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101197] = 11, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2977), 1, + anon_sym_COLON, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2599), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101237] = 11, + ACTIONS(2965), 1, + sym_identifier, + ACTIONS(2967), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_STAR_STAR, + ACTIONS(2975), 1, + anon_sym_SLASH, + ACTIONS(2977), 1, + anon_sym_RPAREN, + STATE(2266), 1, + sym_tuple_pattern, + STATE(2604), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2268), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2532), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101277] = 11, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + ACTIONS(2979), 1, + anon_sym_COLON, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2599), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101317] = 4, + ACTIONS(2934), 1, + anon_sym_COLON, + ACTIONS(2936), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2938), 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, + [101343] = 11, + ACTIONS(2965), 1, + sym_identifier, + ACTIONS(2967), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_STAR_STAR, + ACTIONS(2975), 1, + anon_sym_SLASH, + ACTIONS(2979), 1, + anon_sym_RPAREN, + STATE(2266), 1, + sym_tuple_pattern, + STATE(2604), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2268), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2532), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101383] = 10, + ACTIONS(2965), 1, + sym_identifier, + ACTIONS(2967), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_STAR, + ACTIONS(2973), 1, + anon_sym_STAR_STAR, + ACTIONS(2975), 1, + anon_sym_SLASH, + STATE(2266), 1, + sym_tuple_pattern, + STATE(2604), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2268), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2532), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101420] = 10, + ACTIONS(2916), 1, + sym_identifier, + ACTIONS(2918), 1, + anon_sym_LPAREN, + ACTIONS(2920), 1, + anon_sym_STAR, + ACTIONS(2924), 1, + anon_sym_STAR_STAR, + ACTIONS(2926), 1, + anon_sym_SLASH, + STATE(2434), 1, + sym_tuple_pattern, + STATE(2599), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2611), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2613), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [101457] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [101476] = 4, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [101499] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2645), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101540] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2748), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101581] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2643), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101622] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2740), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101663] = 6, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [101690] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2701), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101731] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2752), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101772] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [101791] = 6, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [101818] = 5, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3017), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [101843] = 3, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [101864] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2678), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101905] = 6, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [101932] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [101951] = 13, + ACTIONS(2989), 1, + anon_sym_COMMA, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(2995), 1, + anon_sym_COLON, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + STATE(1858), 1, + sym_for_in_clause, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, + STATE(2781), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101992] = 12, + ACTIONS(3024), 1, + anon_sym_RPAREN, + ACTIONS(3026), 1, + anon_sym_COMMA, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + STATE(1855), 1, + sym_for_in_clause, + STATE(2485), 1, + aux_sym_argument_list_repeat1, + STATE(2788), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102030] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2741), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102068] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3054), 1, + anon_sym_RPAREN, + ACTIONS(3056), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2665), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102106] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(3060), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2402), 1, + aux_sym_argument_list_repeat1, + STATE(2665), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102144] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3062), 1, + anon_sym_RPAREN, + ACTIONS(3064), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2759), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102182] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3067), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2807), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102220] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3069), 1, + anon_sym_RPAREN, + ACTIONS(3071), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2492), 1, + aux_sym_argument_list_repeat1, + STATE(2807), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102258] = 9, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(2208), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3073), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(3075), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [102290] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3062), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2759), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102328] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2650), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102366] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2754), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102404] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2641), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102442] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3079), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2788), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102480] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2619), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102518] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3081), 1, + anon_sym_RPAREN, + ACTIONS(3083), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2308), 1, + aux_sym_argument_list_repeat1, + STATE(2761), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102556] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3085), 1, + anon_sym_RPAREN, + ACTIONS(3087), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2299), 1, + aux_sym_argument_list_repeat1, + STATE(2759), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102594] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2761), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102632] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2706), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102670] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2707), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102708] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2660), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102746] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3093), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2386), 1, + aux_sym_argument_list_repeat1, + STATE(2640), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102784] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3097), 1, + anon_sym_RPAREN, + ACTIONS(3099), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2363), 1, + aux_sym_argument_list_repeat1, + STATE(2797), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102822] = 12, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, + anon_sym_COMMA, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + STATE(1857), 1, + sym_for_in_clause, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, + STATE(2787), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102860] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3101), 1, + anon_sym_RPAREN, + ACTIONS(3103), 1, + anon_sym_COMMA, + STATE(1855), 1, + sym_for_in_clause, + STATE(2451), 1, + aux_sym_argument_list_repeat1, + STATE(2707), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102898] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2797), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102936] = 12, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3107), 1, + anon_sym_RPAREN, + STATE(1855), 1, + sym_for_in_clause, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, + STATE(2640), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102974] = 5, + ACTIONS(3109), 1, + anon_sym_as, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 7, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [102997] = 6, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103022] = 3, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_or, + [103041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3126), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103070] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3128), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1722), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103099] = 8, + ACTIONS(3130), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3136), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103128] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3142), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1745), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103157] = 6, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103182] = 6, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103207] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 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, + [103224] = 8, + ACTIONS(3130), 1, + anon_sym_COMMA, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + STATE(2007), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3144), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103253] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3146), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1736), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103282] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3148), 1, + anon_sym_LBRACE, + ACTIONS(3154), 1, + sym__not_escape_sequence, + ACTIONS(3157), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3151), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103311] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3159), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103340] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3161), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103369] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [103386] = 4, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 8, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103407] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3163), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103436] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3165), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1732), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103465] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3167), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1733), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103494] = 6, + ACTIONS(3112), 1, + anon_sym_and, + ACTIONS(3114), 1, + anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103519] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [103536] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103561] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3177), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103590] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 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, + [103607] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3179), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1742), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3181), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103665] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3183), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103719] = 3, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 9, + 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_or, + [103738] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 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, + [103755] = 4, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103776] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3185), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1758), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103830] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3187), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103859] = 6, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [103884] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3189), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1753), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103913] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3191), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1747), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103942] = 5, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3193), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103965] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3120), 1, + anon_sym_LBRACE, + ACTIONS(3124), 1, + sym__not_escape_sequence, + ACTIONS(3196), 1, + sym_string_end, + STATE(1896), 1, + aux_sym_string_content_repeat1, + ACTIONS(3122), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1731), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103994] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [104011] = 4, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3198), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_or, + [104031] = 4, + ACTIONS(3202), 1, + anon_sym_DOT, + STATE(1776), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3200), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104051] = 6, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104075] = 6, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104099] = 3, + ACTIONS(2192), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 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, + [104117] = 5, + ACTIONS(3202), 1, + anon_sym_DOT, + ACTIONS(3214), 1, + anon_sym_EQ, + STATE(1761), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 6, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104139] = 3, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [104157] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104181] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 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, + [104197] = 4, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104217] = 5, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3216), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104239] = 4, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104259] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 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, + [104275] = 3, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_or, + sym_type_conversion, + [104293] = 5, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3219), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104315] = 6, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104339] = 4, + ACTIONS(3224), 1, + anon_sym_DOT, + STATE(1776), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3222), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104359] = 4, + ACTIONS(3202), 1, + anon_sym_DOT, + STATE(1761), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [104379] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 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, + [104395] = 3, + ACTIONS(3227), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 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, + [104413] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [104437] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 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, + [104453] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3007), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104477] = 5, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3229), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104499] = 5, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104521] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104545] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104569] = 6, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3075), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [104593] = 9, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3238), 1, + anon_sym_from, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3236), 2, + sym__newline, + anon_sym_SEMI, + [104623] = 6, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(2993), 1, + anon_sym_if, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104647] = 3, + ACTIONS(3198), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 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, + [104665] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104689] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2981), 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, + [104705] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3013), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104729] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2178), 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, + [104745] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3242), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [104769] = 5, + ACTIONS(3244), 1, + anon_sym_DOT, + ACTIONS(3246), 1, + anon_sym_EQ, + STATE(1904), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [104790] = 8, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3248), 2, + sym__newline, + anon_sym_SEMI, + [104817] = 5, + ACTIONS(2991), 1, + anon_sym_as, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3250), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [104838] = 5, + ACTIONS(3252), 1, + anon_sym_DOT, + ACTIONS(3254), 1, + anon_sym_EQ, + STATE(1902), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [104859] = 6, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104882] = 5, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + ACTIONS(3232), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104903] = 5, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 17, - 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, - [96582] = 6, - ACTIONS(2732), 1, + ACTIONS(3250), 5, anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104924] = 5, + ACTIONS(3256), 1, + anon_sym_DOT, + ACTIONS(3258), 1, anon_sym_EQ, - STATE(1604), 1, - aux_sym__patterns_repeat1, + STATE(1861), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 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, - [96614] = 13, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, + ACTIONS(3212), 5, anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2740), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2456), 1, - sym_lambda_parameters, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [104945] = 5, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96660] = 13, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, - anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2742), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2397), 1, - sym__parameters, - STATE(2473), 1, - sym_lambda_parameters, + ACTIONS(3250), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104966] = 6, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96706] = 2, + ACTIONS(3013), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [104989] = 3, + ACTIONS(3227), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 17, + ACTIONS(2981), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [96730] = 13, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, - anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2744), 1, - anon_sym_COLON, - STATE(2179), 1, - sym_parameter, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2394), 1, - sym_lambda_parameters, - STATE(2397), 1, - sym__parameters, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [105006] = 6, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96776] = 6, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_EQ, - ACTIONS(2746), 1, + ACTIONS(3022), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1537), 1, - aux_sym__patterns_repeat1, + anon_sym_async, + anon_sym_for, + [105029] = 4, + ACTIONS(324), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 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, - [96808] = 5, - ACTIONS(2734), 1, + STATE(993), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3260), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_EQ, + anon_sym_PIPE, + [105048] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3262), 1, + anon_sym_COMMA, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3266), 1, + anon_sym_RBRACK, + STATE(2446), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105077] = 8, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(2208), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2748), 2, + ACTIONS(3073), 2, sym__newline, anon_sym_SEMI, - ACTIONS(2738), 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, - [96838] = 4, - ACTIONS(2750), 1, - anon_sym_COMMA, - STATE(1603), 1, - aux_sym__patterns_repeat1, + [105104] = 3, + ACTIONS(2192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 15, + ACTIONS(2178), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [105121] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3264), 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, - [96866] = 4, - ACTIONS(2753), 1, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(1603), 1, - aux_sym__patterns_repeat1, + ACTIONS(3270), 1, + anon_sym_RBRACK, + STATE(2303), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(978), 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, - [96894] = 12, - ACTIONS(2755), 1, - sym_identifier, - ACTIONS(2757), 1, - anon_sym_LPAREN, - ACTIONS(2759), 1, - anon_sym_RPAREN, - ACTIONS(2761), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_STAR_STAR, - ACTIONS(2765), 1, - anon_sym_SLASH, - STATE(2077), 1, - sym_parameter, - STATE(2082), 1, - sym_tuple_pattern, - STATE(2508), 1, - sym__parameters, + [105150] = 8, + ACTIONS(2985), 1, + anon_sym_and, + ACTIONS(2987), 1, + anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2089), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2308), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96937] = 11, - ACTIONS(2755), 1, - sym_identifier, - ACTIONS(2757), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_STAR_STAR, - ACTIONS(2765), 1, - anon_sym_SLASH, - ACTIONS(2767), 1, - anon_sym_RPAREN, - STATE(2082), 1, - sym_tuple_pattern, - STATE(2302), 1, - sym_parameter, + ACTIONS(3136), 2, + sym__newline, + anon_sym_SEMI, + [105177] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3272), 1, + anon_sym_COMMA, + ACTIONS(3274), 1, + anon_sym_RBRACK, + STATE(2369), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2089), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2308), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [96977] = 4, - ACTIONS(2734), 1, - anon_sym_COLON, - ACTIONS(2736), 1, - anon_sym_EQ, + [105206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2738), 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, - [97003] = 11, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, + ACTIONS(3222), 8, + anon_sym_import, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2767), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2342), 1, - sym_parameter, + anon_sym_PIPE, + [105221] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_async, + ACTIONS(3278), 1, + anon_sym_def, + ACTIONS(3280), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97043] = 11, - ACTIONS(2755), 1, - sym_identifier, - ACTIONS(2757), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_STAR_STAR, - ACTIONS(2765), 1, - anon_sym_SLASH, - ACTIONS(2769), 1, - anon_sym_RPAREN, - STATE(2082), 1, - sym_tuple_pattern, - STATE(2302), 1, - sym_parameter, + STATE(788), 2, + sym_function_definition, + sym_class_definition, + STATE(1982), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105246] = 6, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3044), 1, + anon_sym_if, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2089), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2308), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97083] = 11, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, - anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - ACTIONS(2769), 1, + ACTIONS(3007), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [105269] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_COLON, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2342), 1, - sym_parameter, + ACTIONS(3282), 1, + anon_sym_COMMA, + ACTIONS(3284), 1, + anon_sym_RBRACK, + STATE(2478), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97123] = 10, - ACTIONS(2755), 1, - sym_identifier, - ACTIONS(2757), 1, - anon_sym_LPAREN, - ACTIONS(2761), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - anon_sym_STAR_STAR, - ACTIONS(2765), 1, - anon_sym_SLASH, - STATE(2082), 1, - sym_tuple_pattern, - STATE(2302), 1, - sym_parameter, + [105298] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3286), 1, + anon_sym_COMMA, + ACTIONS(3288), 1, + anon_sym_RBRACK, + STATE(2382), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2089), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2308), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97160] = 10, - ACTIONS(2706), 1, - sym_identifier, - ACTIONS(2708), 1, - anon_sym_LPAREN, - ACTIONS(2710), 1, - anon_sym_STAR, - ACTIONS(2714), 1, - anon_sym_STAR_STAR, - ACTIONS(2716), 1, - anon_sym_SLASH, - STATE(2180), 1, - sym_tuple_pattern, - STATE(2342), 1, - sym_parameter, + [105327] = 7, + ACTIONS(1498), 1, + anon_sym_except, + ACTIONS(1506), 1, + anon_sym_except_STAR, + ACTIONS(3290), 1, + anon_sym_finally, + STATE(740), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2332), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2333), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [97197] = 5, - ACTIONS(2773), 1, + STATE(528), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(529), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [105352] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3292), 1, + anon_sym_async, + ACTIONS(3294), 1, + anon_sym_def, + ACTIONS(3296), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(815), 2, + sym_function_definition, + sym_class_definition, + STATE(1982), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105377] = 6, + ACTIONS(3028), 1, anon_sym_as, - ACTIONS(2776), 1, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3038), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(3013), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [97222] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, + anon_sym_async, + anon_sym_for, + [105400] = 7, + ACTIONS(1498), 1, + anon_sym_except, + ACTIONS(1506), 1, + anon_sym_except_STAR, + ACTIONS(3290), 1, + anon_sym_finally, + STATE(747), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [97249] = 3, - ACTIONS(2776), 1, + STATE(524), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(534), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [105425] = 5, + ACTIONS(3050), 1, anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + ACTIONS(3298), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - [97270] = 13, - ACTIONS(2788), 1, + ACTIONS(3015), 5, anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, anon_sym_async, - ACTIONS(2798), 1, anon_sym_for, - ACTIONS(2800), 1, + anon_sym_RBRACK, + [105446] = 5, + ACTIONS(3042), 1, + anon_sym_as, + ACTIONS(3050), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3052), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2430), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97311] = 2, + ACTIONS(3250), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [105467] = 3, + ACTIONS(2192), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(2178), 7, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - [97330] = 2, + [105484] = 3, + ACTIONS(3227), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, + ACTIONS(2981), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, anon_sym_and, anon_sym_or, - anon_sym_PIPE, - [97349] = 4, - ACTIONS(2776), 1, + [105501] = 8, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(2987), 1, anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3303), 1, + anon_sym_COMMA, + STATE(2180), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 10, + ACTIONS(3301), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, + [105528] = 9, + ACTIONS(3204), 1, anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, + anon_sym_or, + ACTIONS(3264), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [97372] = 6, - ACTIONS(2776), 1, + ACTIONS(3305), 1, + anon_sym_COMMA, + ACTIONS(3307), 1, + anon_sym_RBRACK, + STATE(2496), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105557] = 8, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3011), 1, anon_sym_if, + ACTIONS(3311), 1, + anon_sym_COMMA, + STATE(2176), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 8, + ACTIONS(3309), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [97399] = 6, - ACTIONS(2776), 1, + [105584] = 8, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3011), 1, anon_sym_if, + ACTIONS(3303), 1, + anon_sym_COMMA, + STATE(2174), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 8, + ACTIONS(3313), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [97426] = 13, - ACTIONS(2788), 1, - anon_sym_COMMA, - ACTIONS(2790), 1, + [105611] = 9, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2792), 1, + ACTIONS(3206), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(2800), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2368), 1, - sym__comprehension_clauses, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3315), 1, + anon_sym_COMMA, + ACTIONS(3317), 1, + anon_sym_RBRACK, + STATE(2398), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97467] = 13, - ACTIONS(2788), 1, - anon_sym_COMMA, - ACTIONS(2790), 1, + [105640] = 9, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2792), 1, + ACTIONS(3206), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(2800), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2432), 1, - sym__comprehension_clauses, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3319), 1, + anon_sym_COMMA, + ACTIONS(3321), 1, + anon_sym_RBRACK, + STATE(2357), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97508] = 13, - ACTIONS(2788), 1, - anon_sym_COMMA, - ACTIONS(2790), 1, + [105669] = 4, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3198), 1, anon_sym_as, - ACTIONS(2792), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 6, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, anon_sym_async, - ACTIONS(2798), 1, anon_sym_for, - ACTIONS(2800), 1, + anon_sym_RBRACK, + anon_sym_or, + [105688] = 8, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2417), 1, - sym__comprehension_clauses, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97549] = 13, - ACTIONS(2788), 1, - anon_sym_COMMA, - ACTIONS(2790), 1, + ACTIONS(3323), 2, + sym__newline, + anon_sym_SEMI, + [105715] = 5, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2792), 1, - anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(2800), 1, + ACTIONS(3003), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3005), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2523), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97590] = 13, - ACTIONS(2788), 1, + ACTIONS(3250), 5, anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, anon_sym_async, - ACTIONS(2798), 1, anon_sym_for, - ACTIONS(2800), 1, + anon_sym_RBRACE, + [105736] = 5, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3038), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2449), 1, - sym__comprehension_clauses, + ACTIONS(3325), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97631] = 13, - ACTIONS(2788), 1, + ACTIONS(3015), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, anon_sym_async, - ACTIONS(2798), 1, anon_sym_for, - ACTIONS(2800), 1, + [105757] = 5, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3038), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2457), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97672] = 13, - ACTIONS(2788), 1, + ACTIONS(3250), 5, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, anon_sym_if, - ACTIONS(2794), 1, - anon_sym_COLON, - ACTIONS(2796), 1, anon_sym_async, - ACTIONS(2798), 1, anon_sym_for, - ACTIONS(2800), 1, + [105778] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2102), 1, - aux_sym__collection_elements_repeat1, - STATE(2379), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [97713] = 2, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 12, + ACTIONS(3242), 4, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + [105801] = 7, + ACTIONS(1466), 1, + anon_sym_except_STAR, + ACTIONS(1470), 1, + anon_sym_except, + ACTIONS(3328), 1, + anon_sym_finally, + STATE(775), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(551), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(554), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [105826] = 6, + ACTIONS(2991), 1, anon_sym_as, + ACTIONS(2993), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3003), 1, anon_sym_and, + ACTIONS(3005), 1, anon_sym_or, - anon_sym_PIPE, - [97732] = 12, - ACTIONS(2814), 1, - anon_sym_RPAREN, - ACTIONS(2816), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3330), 4, anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2538), 1, - sym__comprehension_clauses, + anon_sym_RBRACE, + [105849] = 7, + ACTIONS(1466), 1, + anon_sym_except_STAR, + ACTIONS(1470), 1, + anon_sym_except, + ACTIONS(3328), 1, + anon_sym_finally, + STATE(741), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97770] = 12, - ACTIONS(2818), 1, + STATE(485), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + STATE(486), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + [105874] = 3, + ACTIONS(3198), 1, anon_sym_as, - ACTIONS(2820), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 7, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, + anon_sym_RBRACK, anon_sym_and, - ACTIONS(2828), 1, anon_sym_or, - ACTIONS(2830), 1, - anon_sym_RPAREN, - ACTIONS(2832), 1, - anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2137), 1, - aux_sym_argument_list_repeat1, - STATE(2365), 1, - sym__comprehension_clauses, + [105891] = 5, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3038), 1, + anon_sym_or, + ACTIONS(3232), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97808] = 12, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, + ACTIONS(2983), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, + [105912] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2834), 1, - anon_sym_RPAREN, - ACTIONS(2836), 1, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3332), 1, anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2178), 1, - aux_sym_argument_list_repeat1, - STATE(2416), 1, - sym__comprehension_clauses, + ACTIONS(3334), 1, + anon_sym_RBRACK, + STATE(2406), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97846] = 12, - ACTIONS(2818), 1, + [105941] = 5, + ACTIONS(3042), 1, anon_sym_as, - ACTIONS(2820), 1, + ACTIONS(3050), 1, + anon_sym_and, + ACTIONS(3052), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3250), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, + anon_sym_RBRACK, + [105962] = 6, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3030), 1, + anon_sym_if, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3038), 1, anon_sym_or, - ACTIONS(2838), 1, - anon_sym_RPAREN, - ACTIONS(2840), 1, - anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2083), 1, - aux_sym_argument_list_repeat1, - STATE(2466), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97884] = 9, - ACTIONS(2776), 1, + ACTIONS(3007), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [105985] = 8, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3011), 1, anon_sym_if, - ACTIONS(2846), 1, + ACTIONS(3240), 1, anon_sym_COMMA, - STATE(1997), 1, + STATE(2092), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, + ACTIONS(2947), 2, sym__newline, anon_sym_SEMI, - ACTIONS(2844), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [97916] = 12, - ACTIONS(2818), 1, + [106012] = 5, + ACTIONS(3028), 1, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3038), 1, anon_sym_or, - ACTIONS(2848), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3250), 5, anon_sym_RPAREN, - ACTIONS(2850), 1, anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2240), 1, - aux_sym_argument_list_repeat1, - STATE(2538), 1, - sym__comprehension_clauses, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106033] = 3, + ACTIONS(3198), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97954] = 12, - ACTIONS(2816), 1, + ACTIONS(3020), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, anon_sym_and, - ACTIONS(2828), 1, anon_sym_or, - ACTIONS(2852), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2439), 1, - sym__comprehension_clauses, + [106050] = 4, + ACTIONS(3036), 1, + anon_sym_and, + ACTIONS(3198), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [97992] = 12, - ACTIONS(2816), 1, + ACTIONS(3020), 6, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, anon_sym_if, - ACTIONS(2822), 1, anon_sym_async, - ACTIONS(2824), 1, anon_sym_for, - ACTIONS(2826), 1, + anon_sym_or, + [106069] = 9, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2854), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2416), 1, - sym__comprehension_clauses, + ACTIONS(3264), 1, + anon_sym_COLON, + ACTIONS(3336), 1, + anon_sym_COMMA, + ACTIONS(3338), 1, + anon_sym_RBRACK, + STATE(2368), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98030] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, - anon_sym_COMMA, - ACTIONS(2858), 1, + [106098] = 5, + ACTIONS(2991), 1, anon_sym_as, - ACTIONS(2860), 1, + ACTIONS(3003), 1, + anon_sym_and, + ACTIONS(3005), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3250), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2862), 1, anon_sym_async, - ACTIONS(2864), 1, anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, + anon_sym_RBRACE, + [106119] = 8, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3340), 1, + anon_sym_COMMA, + ACTIONS(3342), 1, + anon_sym_RBRACE, + STATE(1858), 1, sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2366), 1, + STATE(2477), 1, + aux_sym_dictionary_repeat1, + STATE(2757), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98068] = 12, - ACTIONS(2816), 1, + [106145] = 6, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RPAREN, + ACTIONS(3346), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1856), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106167] = 6, + ACTIONS(3032), 1, + anon_sym_async, + ACTIONS(3034), 1, + anon_sym_for, + ACTIONS(3346), 1, + anon_sym_if, + ACTIONS(3348), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1893), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106189] = 6, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RBRACK, + ACTIONS(3350), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1898), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106211] = 6, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RBRACE, + ACTIONS(3352), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1880), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106233] = 4, + ACTIONS(3256), 1, + anon_sym_DOT, + STATE(1861), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2818), 1, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + anon_sym_PIPE, + [106251] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2870), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2466), 1, - sym__comprehension_clauses, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98106] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(3354), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, - sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2458), 1, - sym__comprehension_clauses, + [106273] = 4, + ACTIONS(3256), 1, + anon_sym_DOT, + STATE(1864), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98144] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(3200), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2862), 1, + anon_sym_PIPE, + [106291] = 8, + ACTIONS(2997), 1, anon_sym_async, - ACTIONS(2864), 1, + ACTIONS(2999), 1, anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, + ACTIONS(3356), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + anon_sym_RBRACE, + STATE(1858), 1, sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2438), 1, + STATE(2282), 1, + aux_sym_dictionary_repeat1, + STATE(2746), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98182] = 12, - ACTIONS(2818), 1, + [106317] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3365), 1, + sym__not_escape_sequence, + STATE(1863), 1, + aux_sym_string_content_repeat1, + ACTIONS(3360), 2, + sym_string_end, + anon_sym_LBRACE, + ACTIONS(3362), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [106339] = 4, + ACTIONS(3368), 1, + anon_sym_DOT, + STATE(1864), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3222), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, + anon_sym_PIPE, + [106357] = 8, + ACTIONS(2997), 1, anon_sym_async, - ACTIONS(2824), 1, + ACTIONS(2999), 1, anon_sym_for, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(2872), 1, - anon_sym_RPAREN, - ACTIONS(2874), 1, + ACTIONS(3371), 1, anon_sym_COMMA, - STATE(1791), 1, + ACTIONS(3373), 1, + anon_sym_RBRACE, + STATE(1858), 1, sym_for_in_clause, - STATE(2189), 1, - aux_sym_argument_list_repeat1, - STATE(2439), 1, + STATE(2461), 1, + aux_sym_dictionary_repeat1, + STATE(2700), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98220] = 12, - ACTIONS(2818), 1, + [106383] = 8, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2820), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(2876), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(3375), 1, anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2064), 1, - aux_sym_argument_list_repeat1, - STATE(2482), 1, - sym__comprehension_clauses, + ACTIONS(3377), 1, + anon_sym_COLON, + STATE(2362), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98258] = 12, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2482), 1, - sym__comprehension_clauses, + [106409] = 4, + ACTIONS(770), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98296] = 12, - ACTIONS(2816), 1, + STATE(997), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3260), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2818), 1, anon_sym_as, - ACTIONS(2820), 1, + anon_sym_PIPE, + [106427] = 7, + ACTIONS(1354), 1, + anon_sym_COLON, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2882), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2382), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98334] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(1352), 2, anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, - sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2531), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + [106451] = 4, + ACTIONS(3379), 1, + anon_sym_DOT, + STATE(1869), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98372] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(3222), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, - sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2464), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + anon_sym_PIPE, + [106469] = 4, + ACTIONS(3252), 1, + anon_sym_DOT, + STATE(1902), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98410] = 12, - ACTIONS(2816), 1, + ACTIONS(3212), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(2818), 1, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(2884), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2424), 1, - sym__comprehension_clauses, + anon_sym_PIPE, + anon_sym_RBRACE, + [106487] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98448] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(3382), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3260), 5, anon_sym_COMMA, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2860), 1, anon_sym_if, - ACTIONS(2862), 1, + anon_sym_COLON, + anon_sym_PIPE, + [106503] = 8, + ACTIONS(2997), 1, anon_sym_async, - ACTIONS(2864), 1, + ACTIONS(2999), 1, anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, + ACTIONS(3384), 1, + anon_sym_COMMA, + ACTIONS(3386), 1, + anon_sym_RBRACE, + STATE(1858), 1, sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, STATE(2385), 1, + aux_sym_dictionary_repeat1, + STATE(2656), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98486] = 12, - ACTIONS(2818), 1, + [106529] = 8, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2820), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(2886), 1, - anon_sym_RPAREN, - ACTIONS(2888), 1, + ACTIONS(3375), 1, anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2216), 1, - aux_sym_argument_list_repeat1, - STATE(2424), 1, - sym__comprehension_clauses, + ACTIONS(3388), 1, + anon_sym_COLON, + STATE(2362), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98524] = 12, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + [106555] = 8, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2890), 1, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, + ACTIONS(3136), 1, anon_sym_RPAREN, - ACTIONS(2892), 1, + ACTIONS(3390), 1, anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2156), 1, - aux_sym_argument_list_repeat1, - STATE(2382), 1, - sym__comprehension_clauses, + STATE(2270), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98562] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, - anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, - sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2427), 1, - sym__comprehension_clauses, + [106581] = 7, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_DOT, + ACTIONS(3394), 1, + anon_sym___future__, + STATE(2239), 1, + aux_sym_import_prefix_repeat1, + STATE(2273), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98600] = 12, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, + STATE(2769), 2, + sym_relative_import, + sym_dotted_name, + [106605] = 6, + ACTIONS(3396), 1, anon_sym_if, - ACTIONS(2822), 1, + ACTIONS(3399), 1, anon_sym_async, - ACTIONS(2824), 1, + ACTIONS(3402), 1, anon_sym_for, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2365), 1, - sym__comprehension_clauses, + ACTIONS(3405), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98638] = 12, - ACTIONS(2818), 1, + STATE(1876), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106627] = 5, + ACTIONS(3042), 1, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(2826), 1, + ACTIONS(3050), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3052), 1, anon_sym_or, - ACTIONS(2870), 1, - anon_sym_RPAREN, - ACTIONS(2896), 1, - anon_sym_COMMA, - STATE(1791), 1, - sym_for_in_clause, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - STATE(2466), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98676] = 12, - ACTIONS(2804), 1, - anon_sym_RBRACK, - ACTIONS(2856), 1, - anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_as, - ACTIONS(2860), 1, + ACTIONS(3407), 4, anon_sym_if, - ACTIONS(2862), 1, anon_sym_async, - ACTIONS(2864), 1, anon_sym_for, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - STATE(1808), 1, - sym_for_in_clause, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, - STATE(2380), 1, - sym__comprehension_clauses, + anon_sym_RBRACK, + [106647] = 4, + ACTIONS(3409), 1, + anon_sym_DOT, + STATE(1878), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [98714] = 5, - ACTIONS(2899), 1, + ACTIONS(3222), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [106665] = 7, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2902), 1, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2904), 1, + ACTIONS(3210), 1, anon_sym_or, + ACTIONS(3412), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 7, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(1428), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [106689] = 6, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3348), 1, + anon_sym_RBRACE, + ACTIONS(3352), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [98737] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2912), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1685), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [98766] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2914), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1694), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [98795] = 5, - ACTIONS(2916), 1, + STATE(1905), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106711] = 7, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2919), 1, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3210), 1, anon_sym_or, + ACTIONS(3264), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 7, - anon_sym_DOT, + ACTIONS(3414), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [106735] = 8, + ACTIONS(3136), 1, + anon_sym_RBRACK, + ACTIONS(3204), 1, + anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [98818] = 6, - ACTIONS(2902), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2904), 1, + ACTIONS(3210), 1, anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + ACTIONS(3416), 1, + anon_sym_COMMA, + STATE(2306), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 6, + [106761] = 4, + ACTIONS(3244), 1, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [98843] = 8, - ACTIONS(3), 1, + STATE(1904), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2927), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1687), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [98872] = 8, - ACTIONS(2929), 1, + ACTIONS(3212), 5, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(2931), 1, anon_sym_as, - ACTIONS(2933), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [106779] = 8, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3175), 1, anon_sym_or, - STATE(1896), 1, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3418), 1, + anon_sym_COLON, + STATE(2362), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2935), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [98901] = 4, - ACTIONS(2919), 1, + [106805] = 8, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3420), 1, + anon_sym_COMMA, + ACTIONS(3422), 1, + anon_sym_COLON, + STATE(2501), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 8, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [98922] = 2, + [106831] = 8, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3428), 1, + anon_sym_STAR, + STATE(2021), 1, + sym_dotted_name, + STATE(2242), 1, + sym_aliased_import, + STATE(2519), 1, + sym__import_list, + STATE(2594), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 10, - anon_sym_DOT, - anon_sym_COMMA, + [106857] = 5, + ACTIONS(2991), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(3003), 1, anon_sym_and, + ACTIONS(3005), 1, anon_sym_or, - anon_sym_PIPE, - [98939] = 3, - ACTIONS(2919), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3407), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106877] = 8, + ACTIONS(3169), 1, anon_sym_as, + ACTIONS(3171), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, anon_sym_or, - anon_sym_PIPE, - [98958] = 8, - ACTIONS(3), 1, + ACTIONS(3430), 1, + anon_sym_COMMA, + ACTIONS(3432), 1, + anon_sym_COLON, + STATE(2468), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2941), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1675), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [98987] = 8, - ACTIONS(2929), 1, + [106903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3436), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3434), 5, anon_sym_COMMA, - ACTIONS(2931), 1, anon_sym_as, - ACTIONS(2933), 1, anon_sym_if, - ACTIONS(2937), 1, + anon_sym_COLON, + anon_sym_PIPE, + [106919] = 5, + ACTIONS(3028), 1, + anon_sym_as, + ACTIONS(3036), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3038), 1, anon_sym_or, - STATE(1896), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3407), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106939] = 8, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3438), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + anon_sym_RBRACE, + STATE(1858), 1, + sym_for_in_clause, + STATE(2410), 1, + aux_sym_dictionary_repeat1, + STATE(2644), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [106965] = 8, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3442), 1, + anon_sym_COMMA, + ACTIONS(3444), 1, anon_sym_RBRACE, - sym_type_conversion, - [99016] = 8, - ACTIONS(3), 1, + STATE(1858), 1, + sym_for_in_clause, + STATE(2411), 1, + aux_sym_dictionary_repeat1, + STATE(2646), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2945), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99045] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, + [106991] = 6, + ACTIONS(3405), 1, + anon_sym_RPAREN, + ACTIONS(3446), 1, anon_sym_if, + ACTIONS(3449), 1, + anon_sym_async, + ACTIONS(3452), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 6, - anon_sym_DOT, + STATE(1893), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107013] = 8, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3455), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_PIPE, - [99070] = 8, - ACTIONS(3), 1, + ACTIONS(3457), 1, + anon_sym_RBRACE, + STATE(1858), 1, + sym_for_in_clause, + STATE(2504), 1, + aux_sym_dictionary_repeat1, + STATE(2779), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2951), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1674), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99099] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + [107039] = 4, + ACTIONS(702), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 6, - anon_sym_DOT, - anon_sym_RPAREN, + STATE(990), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3260), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [99124] = 8, + anon_sym_RBRACE, + [107057] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, + ACTIONS(3463), 1, sym__not_escape_sequence, - ACTIONS(2953), 1, - sym_string_end, - STATE(1798), 1, + STATE(1863), 1, aux_sym_string_content_repeat1, - ACTIONS(2908), 3, + ACTIONS(3459), 2, + sym_string_end, + anon_sym_LBRACE, + ACTIONS(3461), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99153] = 6, - ACTIONS(2776), 1, + [107079] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3011), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 6, + ACTIONS(3465), 3, sym__newline, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_COMMA, + [107101] = 6, + ACTIONS(3046), 1, + anon_sym_async, + ACTIONS(3048), 1, + anon_sym_for, + ACTIONS(3348), 1, + anon_sym_RBRACK, + ACTIONS(3350), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1876), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107123] = 8, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3375), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [99178] = 8, - ACTIONS(3), 1, + STATE(2362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2955), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99207] = 8, - ACTIONS(3), 1, + [107149] = 8, + ACTIONS(2997), 1, + anon_sym_async, + ACTIONS(2999), 1, + anon_sym_for, + ACTIONS(3469), 1, + anon_sym_COMMA, + ACTIONS(3471), 1, + anon_sym_RBRACE, + STATE(1858), 1, + sym_for_in_clause, + STATE(2453), 1, + aux_sym_dictionary_repeat1, + STATE(2662), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2957), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99236] = 6, - ACTIONS(2902), 1, + [107175] = 8, + ACTIONS(3085), 1, + anon_sym_RPAREN, + ACTIONS(3087), 1, + anon_sym_COMMA, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2904), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2923), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2925), 1, + ACTIONS(3118), 1, anon_sym_if, + STATE(2299), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 6, + [107201] = 4, + ACTIONS(3252), 1, anon_sym_DOT, - anon_sym_RPAREN, + STATE(1878), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3200), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [99261] = 2, + anon_sym_RBRACE, + [107219] = 4, + ACTIONS(814), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 10, - anon_sym_DOT, + STATE(1150), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3260), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_RBRACK, anon_sym_PIPE, - [99278] = 8, - ACTIONS(3), 1, + [107237] = 4, + ACTIONS(3244), 1, + anon_sym_DOT, + STATE(1869), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2959), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99307] = 8, - ACTIONS(3), 1, + ACTIONS(3200), 5, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [107255] = 6, + ACTIONS(3405), 1, + anon_sym_RBRACE, + ACTIONS(3473), 1, + anon_sym_if, + ACTIONS(3476), 1, + anon_sym_async, + ACTIONS(3479), 1, + anon_sym_for, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2961), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1668), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99336] = 2, + STATE(1905), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [107277] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 10, - anon_sym_DOT, + ACTIONS(3482), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3434), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_PIPE, + [107292] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3484), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_and, - anon_sym_or, anon_sym_PIPE, - [99353] = 4, - ACTIONS(2902), 1, + [107305] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2904), 1, + ACTIONS(3175), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 8, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3486), 2, anon_sym_COMMA, - anon_sym_as, + anon_sym_COLON, + [107326] = 7, + ACTIONS(3171), 1, anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3488), 1, + anon_sym_COMMA, + ACTIONS(3490), 1, + anon_sym_as, + ACTIONS(3492), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [99374] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 10, - anon_sym_DOT, - anon_sym_RPAREN, + [107349] = 4, + ACTIONS(3496), 1, anon_sym_COMMA, + STATE(1910), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3494), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107366] = 6, + ACTIONS(3204), 1, anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3208), 1, anon_sym_and, + ACTIONS(3210), 1, anon_sym_or, - anon_sym_PIPE, - [99391] = 3, - ACTIONS(2902), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 9, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3499), 2, anon_sym_COMMA, + anon_sym_RBRACK, + [107387] = 4, + ACTIONS(3503), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3501), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [107404] = 6, + ACTIONS(3204), 1, anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3208), 1, + anon_sym_and, + ACTIONS(3210), 1, anon_sym_or, - anon_sym_PIPE, - [99410] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2963), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1672), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99439] = 8, - ACTIONS(3), 1, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107425] = 3, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2965), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99468] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + ACTIONS(3507), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3260), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [107440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 6, + ACTIONS(3509), 6, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [99493] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2967), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99522] = 2, + [107453] = 4, + ACTIONS(3511), 1, + anon_sym_DOT, + STATE(1916), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 10, - anon_sym_DOT, + ACTIONS(3222), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_if, + [107470] = 7, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, + ACTIONS(3520), 1, + anon_sym_RBRACK, + ACTIONS(3522), 1, anon_sym_PIPE, - [99539] = 2, + STATE(2307), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 10, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + [107493] = 6, + ACTIONS(3204), 1, anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3208), 1, anon_sym_and, + ACTIONS(3210), 1, anon_sym_or, - anon_sym_PIPE, - [99556] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2969), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1696), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99585] = 6, - ACTIONS(2919), 1, + ACTIONS(3524), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107514] = 4, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, anon_sym_if, + anon_sym_COLON, + [107531] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 6, + ACTIONS(3526), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [99610] = 6, - ACTIONS(2919), 1, + [107544] = 7, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, + anon_sym_COLON, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3528), 1, + anon_sym_RBRACK, + STATE(2505), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107567] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(2949), 1, + ACTIONS(3011), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 6, + ACTIONS(3530), 2, + sym__newline, + anon_sym_SEMI, + [107588] = 5, + ACTIONS(3534), 1, anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3536), 1, anon_sym_COLON, - anon_sym_else, - anon_sym_EQ, + ACTIONS(3538), 1, anon_sym_PIPE, - [99635] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2971), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1678), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99664] = 8, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2973), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99693] = 8, - ACTIONS(3), 1, + ACTIONS(3532), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [107607] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2975), 1, - anon_sym_LBRACE, - ACTIONS(2981), 1, - sym__not_escape_sequence, - ACTIONS(2984), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2978), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99722] = 8, - ACTIONS(3), 1, + ACTIONS(3540), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107620] = 6, + ACTIONS(3132), 1, + anon_sym_as, + ACTIONS(3134), 1, + anon_sym_if, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2906), 1, - anon_sym_LBRACE, - ACTIONS(2910), 1, - sym__not_escape_sequence, - ACTIONS(2986), 1, - sym_string_end, - STATE(1798), 1, - aux_sym_string_content_repeat1, - ACTIONS(2908), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1695), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [99751] = 3, - ACTIONS(2988), 1, - anon_sym_as, + ACTIONS(3330), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107641] = 4, + ACTIONS(3544), 1, + anon_sym_PIPE, + STATE(1983), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 8, + ACTIONS(3542), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [99769] = 6, - ACTIONS(2931), 1, + [107658] = 6, + ACTIONS(3546), 1, + anon_sym_DOT, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3552), 1, + anon_sym_EQ, + ACTIONS(3554), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3548), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107679] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2933), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3175), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 5, + ACTIONS(3556), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [99793] = 6, - ACTIONS(2931), 1, - anon_sym_as, - ACTIONS(2933), 1, - anon_sym_if, - ACTIONS(2937), 1, + [107700] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3114), 1, anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 5, + ACTIONS(3558), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107721] = 4, + ACTIONS(3560), 1, anon_sym_COMMA, + STATE(1934), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(970), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [99817] = 5, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, - ACTIONS(2990), 1, - anon_sym_as, + [107738] = 4, + ACTIONS(3562), 1, + anon_sym_COMMA, + STATE(1951), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 6, + ACTIONS(3564), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107755] = 4, + ACTIONS(3566), 1, anon_sym_COMMA, + STATE(1970), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3568), 4, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [99839] = 5, - ACTIONS(2993), 1, - anon_sym_as, - ACTIONS(2996), 1, + [107772] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2998), 1, + ACTIONS(3114), 1, anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 6, - anon_sym_DOT, + ACTIONS(3499), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, + [107793] = 4, + ACTIONS(3570), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2887), 4, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [99861] = 4, - ACTIONS(2996), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107810] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2998), 1, + ACTIONS(3114), 1, anon_sym_or, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 7, - anon_sym_DOT, + ACTIONS(3573), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [99881] = 2, + [107831] = 4, + ACTIONS(3575), 1, + anon_sym_DOT, + STATE(1962), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 9, - anon_sym_DOT, + ACTIONS(3212), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, + [107848] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3173), 1, anon_sym_and, + ACTIONS(3175), 1, anon_sym_or, - anon_sym_PIPE, - [99897] = 3, - ACTIONS(2996), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 8, - anon_sym_DOT, + ACTIONS(3242), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_or, - anon_sym_PIPE, - [99915] = 9, - ACTIONS(2776), 1, + [107869] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3002), 1, - anon_sym_from, - ACTIONS(3004), 1, - anon_sym_COMMA, - STATE(1966), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 2, - sym__newline, - anon_sym_SEMI, - [99945] = 3, - ACTIONS(2199), 1, - anon_sym_as, + ACTIONS(3577), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 8, + ACTIONS(3579), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3260), 4, anon_sym_COMMA, - anon_sym_if, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [107905] = 7, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3581), 1, + anon_sym_RBRACK, + STATE(2364), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107928] = 6, + ACTIONS(3112), 1, anon_sym_and, + ACTIONS(3114), 1, anon_sym_or, - anon_sym_RBRACE, - [99963] = 2, + ACTIONS(3116), 1, + anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 9, + ACTIONS(3524), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [107949] = 6, + ACTIONS(3132), 1, anon_sym_as, + ACTIONS(3134), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3138), 1, anon_sym_and, + ACTIONS(3140), 1, anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3583), 2, + anon_sym_COMMA, anon_sym_RBRACE, - sym_type_conversion, - [99979] = 5, - ACTIONS(2800), 1, + [107970] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(3006), 1, + ACTIONS(3116), 1, anon_sym_as, + ACTIONS(3118), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 6, + ACTIONS(3585), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3589), 1, + sym__not_escape_sequence, + ACTIONS(3587), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108008] = 4, + ACTIONS(3593), 1, anon_sym_COMMA, + STATE(1910), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3591), 4, + anon_sym_RPAREN, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [100001] = 6, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, - anon_sym_if, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, + [108025] = 4, + ACTIONS(3595), 1, + anon_sym_COMMA, + STATE(2004), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 5, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3591), 4, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [100025] = 2, + [108042] = 4, + ACTIONS(3597), 1, + anon_sym_COMMA, + STATE(1912), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3568), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3601), 1, + sym__not_escape_sequence, + ACTIONS(3599), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108076] = 6, + ACTIONS(3204), 1, anon_sym_as, + ACTIONS(3206), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(3208), 1, anon_sym_and, + ACTIONS(3210), 1, anon_sym_or, - anon_sym_PIPE, - [100041] = 3, - ACTIONS(2937), 1, - anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 8, + ACTIONS(1418), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [100059] = 3, - ACTIONS(3008), 1, - anon_sym_as, - ACTIONS(3), 2, + anon_sym_RBRACK, + [108097] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(2786), 8, + ACTIONS(3605), 1, + sym__not_escape_sequence, + ACTIONS(3603), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108114] = 4, + ACTIONS(3607), 1, anon_sym_COMMA, + STATE(1985), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3591), 4, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - [100077] = 6, - ACTIONS(2931), 1, + anon_sym_RBRACK, + [108131] = 6, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2933), 1, + ACTIONS(3206), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3210), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 5, + ACTIONS(1428), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [100101] = 4, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(3008), 1, - anon_sym_as, + anon_sym_RBRACK, + [108152] = 4, + ACTIONS(3544), 1, + anon_sym_PIPE, + STATE(1926), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 7, + ACTIONS(3609), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_or, - anon_sym_RBRACE, - [100121] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, + anon_sym_COLON, + [108169] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 5, - anon_sym_DOT, + ACTIONS(3611), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3434), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [100145] = 5, - ACTIONS(2937), 1, - anon_sym_and, - ACTIONS(2939), 1, - anon_sym_or, - ACTIONS(3016), 1, - anon_sym_as, + [108184] = 4, + ACTIONS(3613), 1, + anon_sym_COMMA, + STATE(1955), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 6, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(3242), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [100167] = 6, - ACTIONS(2931), 1, + [108201] = 7, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3516), 1, + anon_sym_COMMA, + ACTIONS(3518), 1, + anon_sym_COLON, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3616), 1, + anon_sym_RBRACK, + STATE(2408), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108224] = 6, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2933), 1, + ACTIONS(3206), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3210), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 5, + ACTIONS(3234), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [100191] = 4, - ACTIONS(2937), 1, - anon_sym_and, - ACTIONS(2939), 1, - anon_sym_or, + anon_sym_RBRACK, + [108245] = 4, + ACTIONS(3618), 1, + anon_sym_COMMA, + STATE(1965), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 7, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3568), 4, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [100211] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108262] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 9, + ACTIONS(3222), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [108275] = 4, + ACTIONS(3620), 1, + anon_sym_COMMA, + STATE(1946), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3564), 4, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [100227] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + [108292] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3171), 1, anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 5, - anon_sym_DOT, + ACTIONS(3622), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100251] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + [108313] = 4, + ACTIONS(3575), 1, + anon_sym_DOT, + STATE(1916), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 5, - anon_sym_DOT, + ACTIONS(3200), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100275] = 6, - ACTIONS(2919), 1, + anon_sym_as, + [108330] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2949), 1, + ACTIONS(3118), 1, anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 5, - anon_sym_DOT, + ACTIONS(3556), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100299] = 6, - ACTIONS(2931), 1, + [108351] = 6, + ACTIONS(3132), 1, anon_sym_as, - ACTIONS(2933), 1, + ACTIONS(3134), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3138), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3140), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 5, + ACTIONS(3499), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [100323] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2844), 5, - anon_sym_DOT, + [108372] = 4, + ACTIONS(3624), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100347] = 2, + STATE(1985), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3501), 4, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, + [108389] = 6, + ACTIONS(3112), 1, anon_sym_and, + ACTIONS(3114), 1, anon_sym_or, - anon_sym_PIPE, - [100363] = 6, - ACTIONS(2790), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2792), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(2800), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3242), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108410] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(2987), 1, anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [100387] = 2, + ACTIONS(3234), 2, + sym__newline, + anon_sym_SEMI, + [108431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3628), 1, + sym__not_escape_sequence, + ACTIONS(3626), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108448] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 9, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3509), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_RBRACE, - sym_type_conversion, - [100403] = 6, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2792), 1, - anon_sym_if, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, + anon_sym_PIPE, + [108461] = 4, + ACTIONS(3630), 1, + anon_sym_COMMA, + STATE(2004), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 5, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3501), 4, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [100427] = 5, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(3021), 1, - anon_sym_as, + [108478] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3484), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108491] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 5, + ACTIONS(3632), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [100448] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3024), 1, - anon_sym_COMMA, - ACTIONS(3026), 1, anon_sym_COLON, - ACTIONS(3028), 1, - anon_sym_RBRACK, - STATE(2134), 1, - aux_sym_subscript_repeat1, + anon_sym_EQ, + anon_sym_PIPE, + [108504] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100477] = 6, - ACTIONS(2790), 1, + ACTIONS(3222), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2792), 1, - anon_sym_if, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [108517] = 4, + ACTIONS(3544), 1, + anon_sym_PIPE, + STATE(1926), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3030), 4, + ACTIONS(3634), 4, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [100500] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3026), 1, anon_sym_COLON, - ACTIONS(3032), 1, + [108534] = 7, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3034), 1, - anon_sym_RBRACK, - STATE(2212), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [100529] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3640), 1, anon_sym_if, - ACTIONS(3026), 1, + ACTIONS(3642), 1, anon_sym_COLON, - ACTIONS(3036), 1, - anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_RBRACK, - STATE(2185), 1, - aux_sym_subscript_repeat1, + STATE(2102), 1, + aux_sym_case_clause_repeat1, + STATE(2664), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100558] = 3, - ACTIONS(2199), 1, - anon_sym_as, + [108557] = 3, + ACTIONS(3644), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 7, - anon_sym_RPAREN, + ACTIONS(3260), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [100575] = 7, - ACTIONS(1514), 1, - anon_sym_except, - ACTIONS(1526), 1, - anon_sym_except_STAR, - ACTIONS(3040), 1, - anon_sym_finally, - STATE(728), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(534), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(543), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [100600] = 8, - ACTIONS(2776), 1, + anon_sym_COLON, + anon_sym_PIPE, + [108572] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(2846), 1, - anon_sym_COMMA, - STATE(1997), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, - sym__newline, - anon_sym_SEMI, - [100627] = 8, - ACTIONS(2776), 1, + ACTIONS(3486), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108593] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3044), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3234), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1984), 1, - aux_sym_assert_statement_repeat1, + [108614] = 6, + ACTIONS(3534), 1, + anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_PIPE, + ACTIONS(3648), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3042), 2, + ACTIONS(3646), 2, sym__newline, anon_sym_SEMI, - [100654] = 7, - ACTIONS(1496), 1, - anon_sym_except, - ACTIONS(1500), 1, - anon_sym_except_STAR, - ACTIONS(3046), 1, - anon_sym_finally, - STATE(743), 1, - sym_finally_clause, + [108635] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(527), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(528), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [100679] = 6, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, + ACTIONS(1609), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108648] = 3, + STATE(1926), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, - anon_sym_RPAREN, + ACTIONS(3650), 5, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [100702] = 7, - ACTIONS(63), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108663] = 4, + ACTIONS(3654), 1, anon_sym_AT, - ACTIONS(3048), 1, - anon_sym_async, - ACTIONS(3050), 1, - anon_sym_def, - ACTIONS(3052), 1, - anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(773), 2, - sym_function_definition, - sym_class_definition, - STATE(1875), 2, + STATE(1982), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [100727] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3054), 1, + ACTIONS(3652), 3, anon_sym_async, - ACTIONS(3056), 1, anon_sym_def, - ACTIONS(3058), 1, anon_sym_class, + [108680] = 4, + ACTIONS(3657), 1, + anon_sym_PIPE, + STATE(1983), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(846), 2, - sym_function_definition, - sym_class_definition, - STATE(1875), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [100752] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3650), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3026), 1, anon_sym_COLON, - ACTIONS(3060), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_RBRACK, - STATE(2046), 1, - aux_sym_subscript_repeat1, + [108697] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100781] = 3, - ACTIONS(2988), 1, - anon_sym_as, + ACTIONS(3075), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108710] = 4, + ACTIONS(3660), 1, + anon_sym_COMMA, + STATE(1985), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3494), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [100798] = 7, - ACTIONS(1514), 1, - anon_sym_except, - ACTIONS(1526), 1, - anon_sym_except_STAR, - ACTIONS(3040), 1, - anon_sym_finally, - STATE(812), 1, - sym_finally_clause, + anon_sym_RBRACK, + [108727] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(603), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - STATE(604), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [100823] = 5, - ACTIONS(2818), 1, + ACTIONS(3526), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3665), 1, + sym__not_escape_sequence, + ACTIONS(3663), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108757] = 6, + ACTIONS(3204), 1, anon_sym_as, - ACTIONS(2826), 1, + ACTIONS(3206), 1, + anon_sym_if, + ACTIONS(3208), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(3210), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + ACTIONS(3242), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108778] = 5, + ACTIONS(3546), 1, + anon_sym_DOT, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3554), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3532), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [100844] = 3, - ACTIONS(2988), 1, - anon_sym_as, + anon_sym_EQ, + [108797] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2812), 7, + ACTIONS(3540), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3669), 1, + sym__not_escape_sequence, + ACTIONS(3667), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108827] = 7, + ACTIONS(3171), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, + ACTIONS(3173), 1, anon_sym_and, + ACTIONS(3175), 1, anon_sym_or, - [100861] = 5, - ACTIONS(2818), 1, + ACTIONS(3490), 1, anon_sym_as, - ACTIONS(2826), 1, + ACTIONS(3671), 1, + anon_sym_COMMA, + ACTIONS(3673), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [108850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3677), 1, + sym__not_escape_sequence, + ACTIONS(3675), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3681), 1, + sym__not_escape_sequence, + ACTIONS(3679), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108884] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2828), 1, + ACTIONS(2987), 1, anon_sym_or, + ACTIONS(3009), 1, + anon_sym_as, + ACTIONS(3011), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, - anon_sym_RPAREN, + ACTIONS(3683), 2, + sym__newline, + anon_sym_SEMI, + [108905] = 4, + ACTIONS(3685), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [100882] = 3, - ACTIONS(3008), 1, - anon_sym_as, + STATE(1945), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 7, + ACTIONS(3564), 4, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [100899] = 4, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(3008), 1, - anon_sym_as, + [108922] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 6, + ACTIONS(3222), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [108935] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [100918] = 9, - ACTIONS(2996), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2998), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3066), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3558), 2, anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_RBRACK, - STATE(2087), 1, - aux_sym_subscript_repeat1, + anon_sym_COLON, + [108956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100947] = 8, - ACTIONS(2776), 1, + ACTIONS(3687), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3260), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [108971] = 6, + ACTIONS(3112), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3114), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3116), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3118), 1, anon_sym_if, - ACTIONS(3072), 1, - anon_sym_COMMA, - STATE(1993), 1, - aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3070), 2, - sym__newline, - anon_sym_SEMI, - [100974] = 8, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3583), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108992] = 6, + ACTIONS(3132), 1, anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3134), 1, anon_sym_if, - ACTIONS(3044), 1, + ACTIONS(3138), 1, + anon_sym_and, + ACTIONS(3140), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3524), 2, anon_sym_COMMA, - STATE(1994), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [109013] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3074), 2, + ACTIONS(3632), 6, sym__newline, anon_sym_SEMI, - [101001] = 3, - ACTIONS(2199), 1, - anon_sym_as, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2185), 7, + ACTIONS(3509), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [101018] = 5, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109039] = 4, + ACTIONS(3689), 1, + anon_sym_COMMA, + STATE(2004), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, - anon_sym_COMMA, + ACTIONS(3494), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [101039] = 8, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_COMMA, - STATE(1966), 1, - aux_sym_assert_statement_repeat1, + [109056] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3076), 2, + ACTIONS(1609), 6, sym__newline, anon_sym_SEMI, - [101066] = 5, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, - ACTIONS(3006), 1, - anon_sym_as, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109069] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 5, + ACTIONS(3075), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [101087] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3026), 1, anon_sym_COLON, - ACTIONS(3078), 1, + anon_sym_EQ, + anon_sym_PIPE, + [109082] = 4, + ACTIONS(3692), 1, anon_sym_COMMA, - ACTIONS(3080), 1, - anon_sym_RBRACK, - STATE(2235), 1, - aux_sym_subscript_repeat1, + STATE(1955), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101116] = 6, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, + ACTIONS(1276), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 4, - anon_sym_RPAREN, + ACTIONS(3694), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3434), 4, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [101139] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, + anon_sym_PIPE, + anon_sym_RBRACE, + [109114] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(3484), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - [101162] = 5, - ACTIONS(2790), 1, - anon_sym_as, - ACTIONS(2800), 1, - anon_sym_and, - ACTIONS(2802), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [109127] = 4, + ACTIONS(3696), 1, + anon_sym_PIPE, + STATE(2010), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + ACTIONS(3650), 3, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [101183] = 8, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_COMMA, - STATE(1966), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [109143] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2748), 2, - sym__newline, - anon_sym_SEMI, - [101210] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3082), 1, + ACTIONS(3509), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(3084), 1, + anon_sym_COLON, anon_sym_RBRACK, - STATE(2113), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [109155] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101239] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3086), 1, + ACTIONS(3494), 5, anon_sym_COMMA, - ACTIONS(3088), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - STATE(2122), 1, - aux_sym_subscript_repeat1, + [109167] = 5, + ACTIONS(3424), 1, + sym_identifier, + STATE(2244), 1, + sym_dotted_name, + STATE(2296), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101268] = 6, - ACTIONS(2858), 1, + ACTIONS(3699), 2, + sym__newline, + anon_sym_SEMI, + [109185] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2860), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2866), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2868), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3701), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109205] = 5, + ACTIONS(3424), 1, + sym_identifier, + STATE(2244), 1, + sym_dotted_name, + STATE(2296), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3699), 2, + sym__newline, + anon_sym_SEMI, + [109223] = 4, + ACTIONS(3703), 1, + anon_sym_PIPE, + STATE(2010), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 4, + ACTIONS(3542), 3, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [101291] = 6, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2860), 1, - anon_sym_if, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, + anon_sym_RBRACE, + [109239] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2810), 4, + ACTIONS(3632), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [101314] = 3, - ACTIONS(3008), 1, + anon_sym_PIPE, + [109251] = 3, + STATE(2016), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3650), 4, + anon_sym_COMMA, anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [109265] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 7, + ACTIONS(1609), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [101331] = 6, - ACTIONS(2818), 1, + anon_sym_PIPE, + [109277] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3705), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2820), 1, - anon_sym_if, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [109289] = 5, + ACTIONS(3709), 1, + anon_sym_COMMA, + ACTIONS(3711), 1, + anon_sym_as, + STATE(2200), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2808), 4, - anon_sym_RPAREN, + ACTIONS(3707), 2, + sym__newline, + anon_sym_SEMI, + [109307] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3713), 5, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - [101354] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3026), 1, anon_sym_COLON, - ACTIONS(3090), 1, - anon_sym_COMMA, - ACTIONS(3092), 1, - anon_sym_RBRACK, - STATE(2220), 1, - aux_sym_subscript_repeat1, + anon_sym_PIPE, + [109319] = 4, + ACTIONS(3703), 1, + anon_sym_PIPE, + STATE(2016), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101383] = 5, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - ACTIONS(3094), 1, + ACTIONS(3609), 3, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACE, + [109335] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2771), 5, + ACTIONS(3494), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [101404] = 8, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, - ACTIONS(3004), 1, + anon_sym_RBRACE, + [109347] = 4, + ACTIONS(3703), 1, + anon_sym_PIPE, + STATE(2016), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3634), 3, anon_sym_COMMA, - STATE(1966), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_RBRACE, + [109363] = 3, + ACTIONS(3715), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 2, - sym__newline, - anon_sym_SEMI, - [101431] = 5, - ACTIONS(2790), 1, + ACTIONS(3260), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2800), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [109377] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3717), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + [109397] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109409] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3719), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_PIPE, + [109421] = 6, + ACTIONS(3721), 1, + anon_sym_LBRACE, + ACTIONS(3723), 1, anon_sym_RBRACE, - [101452] = 4, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(3008), 1, + ACTIONS(3725), 1, + aux_sym_format_specifier_token1, + STATE(2108), 1, + aux_sym_format_specifier_repeat1, + STATE(2375), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109441] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3222), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, + [109453] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2786), 6, + ACTIONS(3727), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, - anon_sym_or, - [101471] = 5, - ACTIONS(2818), 1, - anon_sym_as, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, + [109465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, - anon_sym_RPAREN, + ACTIONS(3729), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [101492] = 9, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + anon_sym_COLON, + anon_sym_PIPE, + [109477] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(3099), 1, - anon_sym_COMMA, - ACTIONS(3101), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3103), 1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3407), 1, anon_sym_COLON, - STATE(1937), 1, - aux_sym_case_clause_repeat1, - STATE(2403), 1, - sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101521] = 5, - ACTIONS(2858), 1, - anon_sym_as, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, + [109497] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + ACTIONS(3731), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [101542] = 5, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109509] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + ACTIONS(3733), 5, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [101563] = 6, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2860), 1, anon_sym_if, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [109521] = 3, + ACTIONS(3735), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, + ACTIONS(3260), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [101586] = 5, - ACTIONS(2858), 1, anon_sym_as, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, + anon_sym_PIPE, + [109535] = 4, + ACTIONS(3737), 1, + anon_sym_PIPE, + STATE(2043), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3634), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [109551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3064), 5, + ACTIONS(3739), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [101607] = 9, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + anon_sym_COLON, + anon_sym_PIPE, + [109563] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3026), 1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3741), 1, anon_sym_COLON, - ACTIONS(3105), 1, - anon_sym_COMMA, - ACTIONS(3107), 1, - anon_sym_RBRACK, - STATE(2160), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101636] = 8, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, - ACTIONS(3004), 1, - anon_sym_COMMA, - STATE(1966), 1, - aux_sym_assert_statement_repeat1, + [109583] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 2, - sym__newline, - anon_sym_SEMI, - [101663] = 5, - ACTIONS(2866), 1, - anon_sym_and, - ACTIONS(2868), 1, - anon_sym_or, - ACTIONS(3006), 1, + ACTIONS(3743), 5, + anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109595] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 5, + ACTIONS(3526), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [101684] = 7, - ACTIONS(1496), 1, - anon_sym_except, - ACTIONS(1500), 1, - anon_sym_except_STAR, - ACTIONS(3046), 1, - anon_sym_finally, - STATE(798), 1, - sym_finally_clause, + anon_sym_PIPE, + [109607] = 4, + ACTIONS(3737), 1, + anon_sym_PIPE, + STATE(2060), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(544), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(546), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [101709] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3109), 1, + ACTIONS(3542), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2066), 1, - aux_sym_dictionary_repeat1, - STATE(2455), 1, - sym__comprehension_clauses, + anon_sym_as, + [109623] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101735] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3113), 1, + ACTIONS(2912), 5, anon_sym_COMMA, - ACTIONS(3115), 1, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2250), 1, - aux_sym_dictionary_repeat1, - STATE(2522), 1, - sym__comprehension_clauses, + sym_type_conversion, + [109635] = 6, + ACTIONS(3745), 1, + anon_sym_COLON, + ACTIONS(3747), 1, + anon_sym_EQ, + ACTIONS(3749), 1, + anon_sym_RBRACE, + ACTIONS(3751), 1, + sym_type_conversion, + STATE(2737), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101761] = 7, - ACTIONS(1406), 1, + [109655] = 5, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_COLON, - ACTIONS(2996), 1, + ACTIONS(3522), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3532), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109673] = 6, + ACTIONS(2985), 1, anon_sym_and, - ACTIONS(2998), 1, + ACTIONS(2987), 1, anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3009), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3011), 1, anon_sym_if, + ACTIONS(3753), 1, + sym__newline, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1404), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [101785] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3117), 1, - anon_sym_COMMA, - ACTIONS(3119), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2101), 1, - aux_sym_dictionary_repeat1, - STATE(2418), 1, - sym__comprehension_clauses, + [109693] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101811] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3121), 1, + ACTIONS(3540), 5, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(3123), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [109705] = 6, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(3758), 1, anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2071), 1, - aux_sym_dictionary_repeat1, - STATE(2429), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, + ACTIONS(3760), 1, + aux_sym_format_specifier_token1, + STATE(2049), 1, + aux_sym_format_specifier_repeat1, + STATE(2375), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [101837] = 8, - ACTIONS(2838), 1, - anon_sym_RPAREN, - ACTIONS(2840), 1, - anon_sym_COMMA, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, - STATE(2083), 1, - aux_sym_argument_list_repeat1, + [109725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101863] = 6, - ACTIONS(3125), 1, + ACTIONS(3727), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3128), 1, anon_sym_async, - ACTIONS(3131), 1, anon_sym_for, - ACTIONS(3134), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1789), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [101885] = 5, - ACTIONS(2790), 1, + [109737] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2800), 1, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2802), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3763), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3136), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + [109757] = 5, + ACTIONS(3765), 1, + anon_sym_COMMA, + ACTIONS(3767), 1, anon_sym_RBRACE, - [101905] = 6, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(3138), 1, - anon_sym_RPAREN, - ACTIONS(3140), 1, - anon_sym_if, + STATE(2335), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1797), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [101927] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3142), 1, - anon_sym_COMMA, - ACTIONS(3144), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2200), 1, - aux_sym_dictionary_repeat1, - STATE(2431), 1, - sym__comprehension_clauses, + ACTIONS(3260), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109775] = 4, + ACTIONS(3737), 1, + anon_sym_PIPE, + STATE(2043), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101953] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3609), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3146), 1, + [109791] = 4, + ACTIONS(3769), 1, + anon_sym_PIPE, + STATE(2099), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3542), 3, anon_sym_COMMA, - ACTIONS(3148), 1, + anon_sym_as, + anon_sym_RBRACK, + [109807] = 5, + ACTIONS(3514), 1, + anon_sym_DOT, + ACTIONS(3518), 1, anon_sym_COLON, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3522), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101979] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, + ACTIONS(3771), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109825] = 5, + ACTIONS(3424), 1, + sym_identifier, + STATE(2244), 1, + sym_dotted_name, + STATE(2296), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3150), 3, + ACTIONS(3773), 2, sym__newline, anon_sym_SEMI, + [109843] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3775), 5, anon_sym_COMMA, - [102001] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, anon_sym_as, - ACTIONS(2784), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3152), 3, - sym__newline, - anon_sym_SEMI, + ACTIONS(3777), 5, anon_sym_COMMA, - [102023] = 6, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3154), 1, + anon_sym_as, anon_sym_if, - ACTIONS(3156), 1, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + [109867] = 3, + STATE(2043), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1789), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102045] = 6, - ACTIONS(2822), 1, - anon_sym_async, - ACTIONS(2824), 1, - anon_sym_for, - ACTIONS(3140), 1, - anon_sym_if, - ACTIONS(3156), 1, + ACTIONS(3650), 4, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [109881] = 4, + ACTIONS(3779), 1, + anon_sym_PIPE, + STATE(2060), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1801), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3162), 1, - sym__not_escape_sequence, - STATE(1805), 1, - aux_sym_string_content_repeat1, - ACTIONS(3158), 2, - sym_string_end, - anon_sym_LBRACE, - ACTIONS(3160), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [102089] = 5, - ACTIONS(2818), 1, + ACTIONS(3650), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2826), 1, - anon_sym_and, - ACTIONS(2828), 1, - anon_sym_or, + [109897] = 4, + ACTIONS(3769), 1, + anon_sym_PIPE, + STATE(2054), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3136), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [102109] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3164), 1, + ACTIONS(3634), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [109913] = 5, + ACTIONS(3782), 1, anon_sym_COMMA, - ACTIONS(3166), 1, + ACTIONS(3784), 1, anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2201), 1, - aux_sym_dictionary_repeat1, - STATE(2450), 1, - sym__comprehension_clauses, + STATE(2312), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102135] = 6, - ACTIONS(3134), 1, - anon_sym_RPAREN, - ACTIONS(3168), 1, + ACTIONS(3260), 2, + anon_sym_COLON, + anon_sym_PIPE, + [109931] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3786), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3171), 1, anon_sym_async, - ACTIONS(3174), 1, anon_sym_for, + anon_sym_RBRACK, + [109943] = 6, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(3788), 1, + anon_sym_LPAREN, + STATE(2021), 1, + sym_dotted_name, + STATE(2242), 1, + sym_aliased_import, + STATE(2529), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1801), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102157] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + [109963] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3790), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, anon_sym_if, - ACTIONS(3146), 1, + anon_sym_COLON, + anon_sym_PIPE, + [109975] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3136), 5, anon_sym_COMMA, - ACTIONS(3177), 1, anon_sym_COLON, - STATE(2052), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109987] = 4, + ACTIONS(3792), 1, + anon_sym_COMMA, + STATE(2067), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102183] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3242), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [110003] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3795), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, anon_sym_if, - ACTIONS(3146), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, anon_sym_COLON, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + anon_sym_PIPE, + [110015] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102209] = 7, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3075), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [110027] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3797), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1438), 2, + [110047] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3526), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_RBRACK, - [102233] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110059] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3188), 1, - sym__not_escape_sequence, - STATE(1805), 1, - aux_sym_string_content_repeat1, - ACTIONS(3183), 2, - sym_string_end, - anon_sym_LBRACE, - ACTIONS(3185), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [102255] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3191), 1, + ACTIONS(3705), 5, anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2164), 1, - aux_sym_dictionary_repeat1, - STATE(2369), 1, - sym__comprehension_clauses, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102281] = 8, - ACTIONS(2943), 1, - anon_sym_RBRACK, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3799), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, - ACTIONS(3195), 1, + anon_sym_COLON, + anon_sym_PIPE, + [110083] = 5, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3803), 1, + anon_sym_COLON, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3532), 2, anon_sym_COMMA, - STATE(2187), 1, - aux_sym_assert_statement_repeat1, + anon_sym_EQ, + [110101] = 5, + ACTIONS(3534), 1, + anon_sym_DOT, + ACTIONS(3536), 1, + anon_sym_COLON, + ACTIONS(3538), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102307] = 6, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(3138), 1, - anon_sym_RBRACK, - ACTIONS(3197), 1, - anon_sym_if, + ACTIONS(3807), 2, + sym__newline, + anon_sym_SEMI, + [110119] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1819), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102329] = 8, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + ACTIONS(3809), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2925), 1, anon_sym_if, - ACTIONS(2943), 1, - anon_sym_RPAREN, - ACTIONS(3199), 1, + anon_sym_COLON, + anon_sym_PIPE, + [110131] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3811), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110151] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3540), 5, + anon_sym_DOT, anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110163] = 5, + ACTIONS(3813), 1, + anon_sym_COMMA, + ACTIONS(3815), 1, + anon_sym_RBRACE, + STATE(2345), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102355] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3260), 2, + anon_sym_COLON, + anon_sym_PIPE, + [110181] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2949), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3146), 1, - anon_sym_COMMA, - ACTIONS(3201), 1, - anon_sym_COLON, - STATE(2052), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3817), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102381] = 6, - ACTIONS(3134), 1, - anon_sym_RBRACK, - ACTIONS(3203), 1, - anon_sym_if, - ACTIONS(3206), 1, - anon_sym_async, - ACTIONS(3209), 1, - anon_sym_for, + [110201] = 5, + ACTIONS(3546), 1, + anon_sym_DOT, + ACTIONS(3550), 1, + anon_sym_COLON, + ACTIONS(3554), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1811), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102403] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3548), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110219] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2949), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3212), 1, - anon_sym_COMMA, - ACTIONS(3214), 1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3819), 1, anon_sym_COLON, - STATE(2045), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102429] = 8, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3216), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, - anon_sym_RBRACE, - STATE(1820), 1, - sym_for_in_clause, - STATE(2139), 1, - aux_sym_dictionary_repeat1, - STATE(2378), 1, - sym__comprehension_clauses, + [110239] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102455] = 7, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3222), 1, - anon_sym_DOT, - ACTIONS(3224), 1, - anon_sym___future__, - STATE(2021), 1, - aux_sym_import_prefix_repeat1, - STATE(2047), 1, - sym_import_prefix, + ACTIONS(2887), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [110251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2489), 2, - sym_relative_import, - sym_dotted_name, - [102479] = 7, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3026), 1, + ACTIONS(3484), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [110263] = 4, + ACTIONS(3769), 1, + anon_sym_PIPE, + STATE(2054), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3226), 2, + ACTIONS(3609), 3, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [102503] = 8, - ACTIONS(3228), 1, - sym_identifier, - ACTIONS(3230), 1, + [110279] = 6, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3821), 1, anon_sym_LPAREN, - ACTIONS(3232), 1, - anon_sym_STAR, - STATE(1917), 1, - sym_dotted_name, - STATE(2022), 1, - sym_aliased_import, - STATE(2327), 1, - sym__import_list, - STATE(2328), 1, - sym_wildcard_import, + ACTIONS(3823), 1, + anon_sym_COLON, + STATE(2447), 1, + sym_type_parameter, + STATE(2657), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102529] = 8, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + [110299] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2949), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(3234), 1, - anon_sym_COMMA, - ACTIONS(3236), 1, - anon_sym_COLON, - STATE(2184), 1, - aux_sym_match_statement_repeat1, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3825), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110319] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102555] = 5, - ACTIONS(2858), 1, + ACTIONS(3827), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2866), 1, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110331] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2868), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3829), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3136), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [102575] = 6, - ACTIONS(2862), 1, - anon_sym_async, - ACTIONS(2864), 1, - anon_sym_for, - ACTIONS(3156), 1, - anon_sym_RBRACK, - ACTIONS(3197), 1, + [110351] = 6, + ACTIONS(3171), 1, anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3831), 1, + anon_sym_as, + ACTIONS(3833), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1811), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102597] = 6, - ACTIONS(2796), 1, - anon_sym_async, - ACTIONS(2798), 1, - anon_sym_for, - ACTIONS(3138), 1, - anon_sym_RBRACE, - ACTIONS(3154), 1, - anon_sym_if, + [110371] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1796), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [102619] = 5, - ACTIONS(3240), 1, - anon_sym_DOT, - ACTIONS(3242), 1, + ACTIONS(3835), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3244), 1, anon_sym_PIPE, + [110383] = 4, + ACTIONS(3837), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3238), 3, + ACTIONS(1276), 3, sym__newline, anon_sym_SEMI, - anon_sym_EQ, - [102638] = 2, + anon_sym_from, + [110399] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 6, + ACTIONS(3075), 5, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102651] = 4, - ACTIONS(3), 1, + [110411] = 6, + ACTIONS(3548), 1, + anon_sym_COMMA, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3803), 1, + anon_sym_COLON, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3248), 1, - sym__not_escape_sequence, - ACTIONS(3246), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [102668] = 2, + [110431] = 6, + ACTIONS(3745), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + anon_sym_EQ, + ACTIONS(3843), 1, + anon_sym_RBRACE, + ACTIONS(3845), 1, + sym_type_conversion, + STATE(2622), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3250), 6, - anon_sym_DOT, - anon_sym_RPAREN, + [110451] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3847), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [102681] = 5, - ACTIONS(3252), 1, - anon_sym_DOT, - ACTIONS(3254), 1, + [110463] = 3, + STATE(2054), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3650), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110477] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3849), 1, anon_sym_COLON, - ACTIONS(3256), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110497] = 4, + ACTIONS(3851), 1, anon_sym_PIPE, + STATE(2099), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3238), 3, - anon_sym_RPAREN, + ACTIONS(3650), 3, anon_sym_COMMA, - anon_sym_EQ, - [102700] = 6, - ACTIONS(2919), 1, + anon_sym_as, + anon_sym_RBRACK, + [110513] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3854), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110533] = 4, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2983), 3, anon_sym_as, - ACTIONS(2949), 1, anon_sym_if, + anon_sym_COLON, + [110549] = 6, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(3640), 1, + anon_sym_if, + ACTIONS(3856), 1, + anon_sym_COMMA, + STATE(2163), 1, + aux_sym_case_clause_repeat1, + STATE(2714), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3258), 2, - anon_sym_COMMA, - anon_sym_COLON, - [102721] = 2, + [110569] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 6, - anon_sym_DOT, - anon_sym_RPAREN, + ACTIONS(3858), 5, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [102734] = 4, - ACTIONS(3262), 1, - anon_sym_COMMA, - STATE(1828), 1, - aux_sym_for_in_clause_repeat1, + [110581] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, + ACTIONS(3786), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [102751] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + [110593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [102772] = 4, - ACTIONS(3271), 1, + ACTIONS(3727), 5, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1867), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110605] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 4, - anon_sym_RPAREN, + ACTIONS(3786), 5, + anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [102789] = 2, + anon_sym_RBRACE, + [110617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 6, + ACTIONS(1609), 5, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102802] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, - ACTIONS(3), 2, + [110629] = 6, + ACTIONS(3721), 1, + anon_sym_LBRACE, + ACTIONS(3860), 1, + anon_sym_RBRACE, + ACTIONS(3862), 1, + aux_sym_format_specifier_token1, + STATE(2049), 1, + aux_sym_format_specifier_repeat1, + STATE(2375), 1, + sym_interpolation, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3275), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [102823] = 2, + [110649] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 6, + ACTIONS(3632), 5, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102836] = 6, - ACTIONS(2776), 1, + [110661] = 6, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2778), 1, + ACTIONS(3175), 1, anon_sym_or, - ACTIONS(2782), 1, + ACTIONS(3831), 1, anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, + ACTIONS(3864), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 2, - sym__newline, - anon_sym_SEMI, - [102857] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + [110681] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2925), 1, + ACTIONS(3171), 1, anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3866), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110701] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, + ACTIONS(3494), 5, anon_sym_RPAREN, anon_sym_COMMA, - [102878] = 6, - ACTIONS(2931), 1, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [110713] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(2933), 1, + ACTIONS(3171), 1, anon_sym_if, - ACTIONS(2937), 1, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2939), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3868), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [102899] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + [110733] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 2, - anon_sym_RPAREN, + ACTIONS(3870), 5, anon_sym_COMMA, - [102920] = 6, - ACTIONS(2931), 1, anon_sym_as, - ACTIONS(2933), 1, anon_sym_if, - ACTIONS(2937), 1, - anon_sym_and, - ACTIONS(2939), 1, - anon_sym_or, + anon_sym_COLON, + anon_sym_PIPE, + [110745] = 6, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3821), 1, + anon_sym_LPAREN, + ACTIONS(3872), 1, + anon_sym_COLON, + STATE(2334), 1, + sym_type_parameter, + STATE(2709), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110765] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 2, + ACTIONS(3874), 5, anon_sym_COMMA, - anon_sym_RBRACE, - [102941] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3014), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110777] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + ACTIONS(3876), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [102962] = 6, - ACTIONS(3240), 1, - anon_sym_DOT, - ACTIONS(3242), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3244), 1, anon_sym_PIPE, - ACTIONS(3287), 1, - anon_sym_EQ, + [110789] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3878), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3285), 2, - sym__newline, - anon_sym_SEMI, - [102983] = 4, - ACTIONS(3289), 1, - anon_sym_COMMA, - STATE(1873), 1, - aux_sym_for_in_clause_repeat1, + [110809] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 4, + ACTIONS(3880), 5, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103000] = 4, - ACTIONS(2919), 1, + anon_sym_COLON, + anon_sym_PIPE, + [110821] = 6, + ACTIONS(3169), 1, + anon_sym_as, + ACTIONS(3171), 1, + anon_sym_if, + ACTIONS(3173), 1, anon_sym_and, - ACTIONS(2921), 1, + ACTIONS(3175), 1, anon_sym_or, + ACTIONS(3882), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110841] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 4, + ACTIONS(3884), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [103017] = 4, - ACTIONS(3293), 1, - anon_sym_COMMA, - STATE(1872), 1, - aux_sym__patterns_repeat1, + anon_sym_PIPE, + [110853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(978), 4, + ACTIONS(1542), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103034] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + [110865] = 6, + ACTIONS(3169), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3171), 1, anon_sym_if, + ACTIONS(3173), 1, + anon_sym_and, + ACTIONS(3175), 1, + anon_sym_or, + ACTIONS(3886), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1438), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [103055] = 2, + [110885] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3250), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103068] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + ACTIONS(3888), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2925), 1, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [110897] = 3, + ACTIONS(3890), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3295), 2, - anon_sym_RPAREN, + ACTIONS(3260), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110911] = 5, + ACTIONS(3892), 1, anon_sym_COMMA, - [103089] = 2, + ACTIONS(3894), 1, + anon_sym_RBRACE, + STATE(2433), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103102] = 6, - ACTIONS(3252), 1, - anon_sym_DOT, - ACTIONS(3254), 1, + ACTIONS(3260), 2, anon_sym_COLON, - ACTIONS(3256), 1, anon_sym_PIPE, - ACTIONS(3299), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3297), 2, + [110929] = 5, + ACTIONS(3896), 1, anon_sym_RPAREN, + ACTIONS(3898), 1, anon_sym_COMMA, - [103123] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + ACTIONS(3900), 1, anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + STATE(2440), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [103144] = 4, - ACTIONS(3303), 1, - anon_sym_COMMA, - STATE(1858), 1, - aux_sym_for_in_clause_repeat1, + [110946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103161] = 6, - ACTIONS(2931), 1, + ACTIONS(3733), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2933), 1, - anon_sym_if, - ACTIONS(2937), 1, - anon_sym_and, - ACTIONS(2939), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [110957] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3030), 2, + ACTIONS(3731), 4, anon_sym_COMMA, - anon_sym_RBRACE, - [103182] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + anon_sym_RBRACK, + anon_sym_PIPE, + [110968] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3904), 1, + sym__dedent, + STATE(2209), 1, + aux_sym__match_block_repeat1, + STATE(2609), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1420), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [103203] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + [110985] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3305), 2, + ACTIONS(3729), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [103224] = 7, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3309), 1, + anon_sym_PIPE, + [110996] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3906), 1, + sym__dedent, + STATE(2158), 1, + aux_sym__match_block_repeat1, + STATE(2609), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111013] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3713), 4, anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3313), 1, + anon_sym_as, anon_sym_RBRACK, - ACTIONS(3315), 1, anon_sym_PIPE, - STATE(2091), 1, - aux_sym_type_parameter_repeat1, + [111024] = 4, + ACTIONS(3910), 1, + anon_sym_COLON, + ACTIONS(3912), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103247] = 4, - ACTIONS(3319), 1, + ACTIONS(3908), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1867), 1, - aux_sym_for_in_clause_repeat1, + [111039] = 5, + ACTIONS(3745), 1, + anon_sym_COLON, + ACTIONS(3914), 1, + anon_sym_RBRACE, + ACTIONS(3916), 1, + sym_type_conversion, + STATE(2649), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 4, + [111056] = 5, + ACTIONS(3699), 1, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [103264] = 7, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3321), 1, + ACTIONS(3918), 1, + sym_identifier, + STATE(2352), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111073] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3739), 4, anon_sym_COMMA, - ACTIONS(3323), 1, anon_sym_as, - ACTIONS(3325), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [111084] = 5, + ACTIONS(3699), 1, + anon_sym_RPAREN, + ACTIONS(3918), 1, + sym_identifier, + STATE(2352), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103287] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + [111101] = 5, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2551), 1, + sym_parameters, + STATE(2558), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [111118] = 5, + ACTIONS(3922), 1, + anon_sym_COMMA, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + ACTIONS(3926), 1, + anon_sym_RBRACK, + STATE(2428), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 2, + [111135] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(3928), 1, anon_sym_RPAREN, + ACTIONS(3930), 1, anon_sym_COMMA, - [103308] = 4, - ACTIONS(3327), 1, - anon_sym_COMMA, - STATE(1858), 1, - aux_sym_for_in_clause_repeat1, + STATE(2426), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103325] = 4, - ACTIONS(3332), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, + [111152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3330), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3874), 4, anon_sym_COMMA, anon_sym_as, - [103342] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, + anon_sym_RBRACK, + anon_sym_PIPE, + [111163] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3334), 2, + ACTIONS(3743), 4, anon_sym_COMMA, - anon_sym_COLON, - [103363] = 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111174] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103376] = 7, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3309), 1, + ACTIONS(3775), 4, anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3336), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2162), 1, - aux_sym_type_parameter_repeat1, + anon_sym_PIPE, + [111185] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103399] = 4, - ACTIONS(3340), 1, + ACTIONS(3777), 4, anon_sym_COMMA, - STATE(1830), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111196] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3338), 4, + ACTIONS(3713), 4, anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [103416] = 7, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3323), 1, - anon_sym_as, - ACTIONS(3342), 1, anon_sym_COMMA, - ACTIONS(3344), 1, - anon_sym_COLON, + anon_sym_as, + anon_sym_PIPE, + [111207] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103439] = 4, - ACTIONS(3346), 1, + ACTIONS(3729), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1865), 1, - aux_sym_assert_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103456] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3790), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + anon_sym_RBRACK, + anon_sym_PIPE, + [111229] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3010), 2, + ACTIONS(3827), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [103477] = 4, - ACTIONS(3349), 1, - anon_sym_COMMA, - STATE(1867), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_PIPE, + [111240] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [103494] = 5, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3835), 4, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111251] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3352), 3, + ACTIONS(3731), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - [103513] = 2, + anon_sym_as, + anon_sym_PIPE, + [111262] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103526] = 7, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3847), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3136), 1, - anon_sym_COLON, - ACTIONS(3354), 1, - anon_sym_else, + anon_sym_RBRACK, + anon_sym_PIPE, + [111273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [103549] = 6, - ACTIONS(2996), 1, - anon_sym_and, - ACTIONS(2998), 1, - anon_sym_or, - ACTIONS(3012), 1, + ACTIONS(3733), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, + anon_sym_PIPE, + [111284] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 2, + ACTIONS(3719), 4, anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [103570] = 4, - ACTIONS(3356), 1, - anon_sym_COMMA, - STATE(1872), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2677), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103587] = 4, - ACTIONS(3359), 1, + anon_sym_PIPE, + [111295] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(3932), 1, + anon_sym_RPAREN, + ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1828), 1, - aux_sym_for_in_clause_repeat1, + STATE(2280), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3317), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103604] = 2, + [111312] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 6, - anon_sym_DOT, + ACTIONS(3739), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [103617] = 4, - ACTIONS(3363), 1, - anon_sym_AT, + [111323] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1875), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3361), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [103634] = 4, - ACTIONS(3366), 1, + ACTIONS(3858), 4, anon_sym_COMMA, - STATE(1908), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111334] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(3936), 1, + sym__dedent, + STATE(2209), 1, + aux_sym__match_block_repeat1, + STATE(2609), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3338), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [103651] = 2, + [111351] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(2171), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 6, + ACTIONS(3938), 2, sym__newline, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103664] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, + [111366] = 3, + ACTIONS(3638), 1, anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3258), 2, - anon_sym_RPAREN, + ACTIONS(3942), 3, anon_sym_COMMA, - [103685] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, anon_sym_if, + anon_sym_COLON, + [111379] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3281), 2, + ACTIONS(3743), 4, anon_sym_RPAREN, anon_sym_COMMA, - [103706] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3334), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [103727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3370), 1, - sym__not_escape_sequence, - ACTIONS(3368), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [103744] = 4, - ACTIONS(3332), 1, - anon_sym_DOT, - STATE(1859), 1, - aux_sym_dotted_name_repeat1, + anon_sym_PIPE, + [111390] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3372), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3944), 4, anon_sym_COMMA, anon_sym_as, - [103761] = 4, - ACTIONS(3376), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_dotted_name_repeat1, + anon_sym_if, + anon_sym_COLON, + [111401] = 4, + ACTIONS(3946), 1, + anon_sym_COMMA, + STATE(2163), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3374), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - [103778] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, + ACTIONS(3942), 2, anon_sym_if, + anon_sym_COLON, + [111416] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(2191), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3379), 2, + ACTIONS(3949), 2, sym__newline, anon_sym_SEMI, - [103799] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + [111431] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + ACTIONS(3775), 4, anon_sym_RPAREN, anon_sym_COMMA, - [103820] = 4, - ACTIONS(3381), 1, - anon_sym_COMMA, - STATE(1858), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3317), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [103837] = 6, - ACTIONS(2931), 1, anon_sym_as, - ACTIONS(2933), 1, - anon_sym_if, - ACTIONS(2937), 1, - anon_sym_and, - ACTIONS(2939), 1, - anon_sym_or, + anon_sym_PIPE, + [111442] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + ACTIONS(3777), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [103858] = 4, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_PIPE, + [111453] = 5, + ACTIONS(3548), 1, + anon_sym_COMMA, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3803), 1, + anon_sym_COLON, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3385), 1, - sym__not_escape_sequence, - ACTIONS(3383), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [103875] = 2, + [111470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3790), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103888] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, + anon_sym_PIPE, + [111481] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(2164), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3387), 2, + ACTIONS(3951), 2, sym__newline, anon_sym_SEMI, - [103909] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, + [111496] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3389), 2, + ACTIONS(3827), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [103930] = 2, + anon_sym_as, + anon_sym_PIPE, + [111507] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + STATE(2191), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 6, + ACTIONS(3953), 2, sym__newline, anon_sym_SEMI, + [111522] = 5, + ACTIONS(3801), 1, anon_sym_DOT, + ACTIONS(3803), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3805), 1, anon_sym_PIPE, - [103943] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3393), 1, - sym__not_escape_sequence, - ACTIONS(3391), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [103960] = 4, - ACTIONS(3), 1, + ACTIONS(3955), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3397), 1, - sym__not_escape_sequence, - ACTIONS(3395), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [103977] = 7, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3309), 1, - anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3399), 1, - anon_sym_RBRACK, - STATE(2224), 1, - aux_sym_type_parameter_repeat1, + [111539] = 5, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2564), 1, + sym_parameters, + STATE(2571), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104000] = 4, - ACTIONS(3401), 1, + [111556] = 4, + ACTIONS(3303), 1, anon_sym_COMMA, - STATE(1865), 1, + STATE(2067), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1270), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104017] = 2, + ACTIONS(3957), 2, + sym__newline, + anon_sym_SEMI, + [111571] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 6, - anon_sym_DOT, + ACTIONS(3835), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [104030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3407), 1, - sym__not_escape_sequence, - ACTIONS(3405), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [104047] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, + anon_sym_PIPE, + [111582] = 4, + ACTIONS(3961), 1, + anon_sym_COMMA, + STATE(2237), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 2, - anon_sym_COMMA, - anon_sym_COLON, - [104068] = 4, - ACTIONS(3409), 1, + ACTIONS(3959), 2, + sym__newline, + anon_sym_SEMI, + [111597] = 4, + ACTIONS(3965), 1, anon_sym_COMMA, - STATE(1850), 1, - aux_sym_for_in_clause_repeat1, + STATE(2237), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3338), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104085] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, + ACTIONS(3963), 2, + sym__newline, + anon_sym_SEMI, + [111612] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3301), 2, - anon_sym_COMMA, + ACTIONS(3260), 2, anon_sym_COLON, - [104106] = 4, - ACTIONS(3411), 1, - anon_sym_COMMA, - STATE(1855), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3291), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104123] = 4, - ACTIONS(3413), 1, + anon_sym_PIPE, + ACTIONS(3967), 2, anon_sym_COMMA, - STATE(1886), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_RBRACE, + [111625] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3291), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104140] = 7, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3309), 1, + ACTIONS(3870), 4, anon_sym_COMMA, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_PIPE, - ACTIONS(3415), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2245), 1, - aux_sym_type_parameter_repeat1, + anon_sym_PIPE, + [111636] = 4, + ACTIONS(3303), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3419), 1, - sym__not_escape_sequence, - ACTIONS(3417), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [104180] = 6, - ACTIONS(2902), 1, - anon_sym_and, - ACTIONS(2904), 1, - anon_sym_or, - ACTIONS(2923), 1, - anon_sym_as, - ACTIONS(2925), 1, - anon_sym_if, + ACTIONS(3969), 2, + sym__newline, + anon_sym_SEMI, + [111651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3267), 2, + ACTIONS(3809), 4, anon_sym_RPAREN, anon_sym_COMMA, - [104201] = 4, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_PIPE, + [111662] = 2, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3423), 1, - sym__not_escape_sequence, - ACTIONS(3421), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [104218] = 4, - ACTIONS(3425), 1, + ACTIONS(3847), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1828), 1, - aux_sym_for_in_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111673] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3269), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3876), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_RBRACK, - [104235] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3403), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, anon_sym_PIPE, - [104248] = 2, + [111684] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3719), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, - [104261] = 2, + [111695] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 5, + ACTIONS(3880), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, anon_sym_RBRACK, - [104273] = 2, + anon_sym_PIPE, + [111706] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 5, + ACTIONS(3884), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [104285] = 6, - ACTIONS(3429), 1, - anon_sym_LBRACE, - ACTIONS(3431), 1, - anon_sym_RBRACE, - ACTIONS(3433), 1, - aux_sym_format_specifier_token1, - STATE(1956), 1, - aux_sym_format_specifier_repeat1, - STATE(2107), 1, - sym_interpolation, - ACTIONS(5), 2, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111717] = 5, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(3971), 1, + anon_sym_COMMA, + ACTIONS(3973), 1, + anon_sym_RBRACK, + STATE(2350), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104305] = 4, - ACTIONS(3435), 1, - anon_sym_COMMA, - STATE(1914), 1, - aux_sym_assert_statement_repeat1, + [111734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3019), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [104321] = 2, + ACTIONS(3888), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111745] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3374), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3799), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [104333] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3354), 1, - anon_sym_else, + anon_sym_PIPE, + [111756] = 4, + ACTIONS(3977), 1, + anon_sym_DOT, + STATE(2190), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104353] = 5, - ACTIONS(3440), 1, + ACTIONS(3975), 2, + anon_sym_import, + sym_identifier, + [111771] = 4, + ACTIONS(3982), 1, anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_as, - STATE(1987), 1, - aux_sym__import_list_repeat1, + STATE(2191), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3438), 2, + ACTIONS(3980), 2, sym__newline, anon_sym_SEMI, - [104371] = 2, + [111786] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(3985), 1, + anon_sym_RPAREN, + ACTIONS(3987), 1, + anon_sym_COMMA, + STATE(2358), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104383] = 5, - ACTIONS(3228), 1, - sym_identifier, - STATE(2020), 1, - sym_dotted_name, - STATE(2075), 1, - sym_aliased_import, + [111803] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, - sym__newline, - anon_sym_SEMI, - [104401] = 2, + ACTIONS(3705), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111814] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3446), 5, - anon_sym_RPAREN, + ACTIONS(3876), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104413] = 5, - ACTIONS(3252), 1, - anon_sym_DOT, - ACTIONS(3254), 1, - anon_sym_COLON, - ACTIONS(3256), 1, + anon_sym_as, anon_sym_PIPE, + anon_sym_RBRACE, + [111825] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3297), 2, + ACTIONS(3858), 4, anon_sym_RPAREN, anon_sym_COMMA, - [104431] = 2, + anon_sym_as, + anon_sym_PIPE, + [111836] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 5, - anon_sym_RPAREN, + ACTIONS(3795), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104443] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3448), 1, - anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [111847] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104463] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3795), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3450), 1, - anon_sym_COLON, + anon_sym_PIPE, + [111858] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(3989), 1, + anon_sym_RPAREN, + ACTIONS(3991), 1, + anon_sym_COMMA, + STATE(2319), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104483] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3452), 1, + [111875] = 5, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(3454), 1, - anon_sym_COLON, + ACTIONS(3993), 1, + anon_sym_COMMA, + ACTIONS(3995), 1, + anon_sym_RBRACK, + STATE(2317), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104503] = 5, - ACTIONS(3228), 1, - sym_identifier, - STATE(2020), 1, - sym_dotted_name, - STATE(2075), 1, - sym_aliased_import, + [111892] = 4, + ACTIONS(3999), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3444), 2, + ACTIONS(3997), 2, sym__newline, anon_sym_SEMI, - [104521] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3456), 1, - anon_sym_else, + [111907] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104541] = 2, + ACTIONS(3705), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 5, - anon_sym_RPAREN, + ACTIONS(3799), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104553] = 6, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3460), 1, - anon_sym_COLON, - STATE(2094), 1, - sym_type_parameter, - STATE(2433), 1, - sym_argument_list, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111929] = 5, + ACTIONS(3773), 1, + anon_sym_RPAREN, + ACTIONS(3918), 1, + sym_identifier, + STATE(2352), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104573] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3462), 1, - anon_sym_COLON, + [111946] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104593] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3809), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3464), 1, - anon_sym_else, + anon_sym_RBRACK, + anon_sym_PIPE, + [111957] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(4001), 1, + anon_sym_RPAREN, + ACTIONS(4003), 1, + anon_sym_COMMA, + STATE(2343), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104613] = 4, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, + [111974] = 4, + ACTIONS(4005), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2806), 3, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [104629] = 4, - ACTIONS(3466), 1, - anon_sym_DOT, - STATE(1939), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(3997), 2, + sym__newline, + anon_sym_SEMI, + [111989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3372), 3, + ACTIONS(3870), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [104645] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3468), 1, - anon_sym_COLON, + anon_sym_PIPE, + [112000] = 4, + ACTIONS(4007), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104665] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3470), 1, - anon_sym_COLON, + ACTIONS(1406), 2, + sym__newline, + anon_sym_SEMI, + [112015] = 5, + ACTIONS(4009), 1, + anon_sym_case, + ACTIONS(4012), 1, + sym__dedent, + STATE(2209), 1, + aux_sym__match_block_repeat1, + STATE(2609), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104685] = 6, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(3474), 1, - anon_sym_EQ, - ACTIONS(3476), 1, - anon_sym_RBRACE, - ACTIONS(3478), 1, - sym_type_conversion, - STATE(2398), 1, - sym_format_specifier, + [112032] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104705] = 6, - ACTIONS(3480), 1, + ACTIONS(3634), 4, anon_sym_COMMA, - ACTIONS(3482), 1, + anon_sym_as, anon_sym_if, - ACTIONS(3484), 1, anon_sym_COLON, - STATE(2017), 1, - aux_sym_case_clause_repeat1, - STATE(2463), 1, - sym_if_clause, + [112043] = 4, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2177), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104725] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(4014), 2, + sym__newline, + anon_sym_SEMI, + [112058] = 5, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3486), 1, - anon_sym_COLON, + ACTIONS(4018), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_RBRACK, + STATE(2330), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104745] = 4, - ACTIONS(3466), 1, - anon_sym_DOT, - STATE(1964), 1, - aux_sym_dotted_name_repeat1, + [112075] = 5, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(4022), 1, + anon_sym_RPAREN, + ACTIONS(4024), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3330), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [104761] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3488), 1, - anon_sym_COLON, + [112092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104781] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3713), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3136), 1, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [112103] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104801] = 2, + ACTIONS(3876), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [112114] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 5, - anon_sym_DOT, + ACTIONS(3729), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [104813] = 2, + anon_sym_RBRACE, + [112125] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 5, - anon_sym_DOT, + ACTIONS(3880), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [104825] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3490), 1, - anon_sym_else, + anon_sym_PIPE, + [112136] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104845] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3452), 1, + ACTIONS(3884), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3492), 1, - anon_sym_COLON, + anon_sym_PIPE, + [112147] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104865] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3731), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3494), 1, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACE, + [112158] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104885] = 2, + ACTIONS(3888), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [112169] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3403), 5, - anon_sym_DOT, + ACTIONS(3733), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [104897] = 2, + anon_sym_RBRACE, + [112180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2844), 5, - anon_sym_DOT, + ACTIONS(3739), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [104909] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + anon_sym_RBRACE, + [112191] = 5, + ACTIONS(3900), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3496), 1, - anon_sym_else, + ACTIONS(4026), 1, + anon_sym_RPAREN, + ACTIONS(4028), 1, + anon_sym_COMMA, + STATE(2305), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104929] = 2, + [112208] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1600), 5, - anon_sym_DOT, + ACTIONS(3874), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [104941] = 6, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3498), 1, - anon_sym_COLON, - STATE(2150), 1, - sym_type_parameter, - STATE(2377), 1, - sym_argument_list, + [112219] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104961] = 5, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3311), 1, + ACTIONS(4030), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [112230] = 5, + ACTIONS(3745), 1, anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_PIPE, + ACTIONS(4032), 1, + anon_sym_RBRACE, + ACTIONS(4034), 1, + sym_type_conversion, + STATE(2648), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3500), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [104979] = 5, - ACTIONS(3307), 1, - anon_sym_DOT, - ACTIONS(3311), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_PIPE, + [112247] = 5, + ACTIONS(3902), 1, + anon_sym_case, + ACTIONS(4036), 1, + sym__dedent, + STATE(2130), 1, + aux_sym__match_block_repeat1, + STATE(2609), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3238), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [104997] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, - anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3502), 1, - anon_sym_COLON, + [112264] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105017] = 2, + ACTIONS(3743), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [112275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 5, + ACTIONS(3775), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [105029] = 6, - ACTIONS(3429), 1, - anon_sym_LBRACE, - ACTIONS(3504), 1, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3506), 1, - aux_sym_format_specifier_token1, - STATE(1962), 1, - aux_sym_format_specifier_repeat1, - STATE(2107), 1, - sym_interpolation, - ACTIONS(5), 2, + [112286] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105049] = 6, - ACTIONS(3297), 1, + ACTIONS(3777), 4, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3512), 1, - anon_sym_EQ, - ACTIONS(3514), 1, + anon_sym_as, anon_sym_PIPE, + anon_sym_RBRACE, + [112297] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105069] = 2, + ACTIONS(3790), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [112308] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 5, + ACTIONS(3827), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [105081] = 2, + [112319] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 5, + ACTIONS(3835), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [105093] = 2, + [112330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2704), 5, + ACTIONS(3847), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [105105] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3516), 1, - anon_sym_else, + anon_sym_PIPE, + anon_sym_RBRACE, + [112341] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105125] = 6, - ACTIONS(3518), 1, - anon_sym_LBRACE, - ACTIONS(3521), 1, + ACTIONS(3719), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3523), 1, - aux_sym_format_specifier_token1, - STATE(1962), 1, - aux_sym_format_specifier_repeat1, - STATE(2107), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [105145] = 2, + [112352] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 5, - anon_sym_DOT, + ACTIONS(3858), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, anon_sym_PIPE, - [105157] = 4, - ACTIONS(3526), 1, - anon_sym_DOT, - STATE(1964), 1, - aux_sym_dotted_name_repeat1, + anon_sym_RBRACE, + [112363] = 4, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2237), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3374), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [105173] = 6, - ACTIONS(2776), 1, - anon_sym_and, - ACTIONS(2778), 1, - anon_sym_or, - ACTIONS(2782), 1, - anon_sym_as, - ACTIONS(2784), 1, - anon_sym_if, - ACTIONS(3529), 1, + ACTIONS(4038), 2, sym__newline, + anon_sym_SEMI, + [112378] = 5, + ACTIONS(3918), 1, + sym_identifier, + STATE(2251), 1, + sym_dotted_name, + STATE(2265), 1, + sym_aliased_import, + STATE(2632), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105193] = 4, - ACTIONS(3531), 1, - anon_sym_COMMA, - STATE(1914), 1, - aux_sym_assert_statement_repeat1, + [112395] = 4, + ACTIONS(4045), 1, + anon_sym_DOT, + STATE(2190), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1270), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [105209] = 6, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(3533), 1, - anon_sym_EQ, - ACTIONS(3535), 1, - anon_sym_RBRACE, - ACTIONS(3537), 1, - sym_type_conversion, - STATE(2454), 1, - sym_format_specifier, + ACTIONS(4043), 2, + anon_sym_import, + sym_identifier, + [112410] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105229] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(3870), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3539), 1, - anon_sym_else, + anon_sym_PIPE, + anon_sym_RBRACE, + [112421] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105249] = 5, - ACTIONS(3240), 1, - anon_sym_DOT, - ACTIONS(3242), 1, - anon_sym_COLON, - ACTIONS(3244), 1, + ACTIONS(3795), 4, + anon_sym_COMMA, + anon_sym_as, anon_sym_PIPE, + anon_sym_RBRACE, + [112432] = 4, + ACTIONS(3709), 1, + anon_sym_COMMA, + STATE(2206), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3541), 2, + ACTIONS(3707), 2, sym__newline, anon_sym_SEMI, - [105267] = 5, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3238), 2, - anon_sym_COMMA, - anon_sym_EQ, - [105285] = 2, + [112447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3250), 5, - anon_sym_DOT, + ACTIONS(3799), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [105297] = 2, + anon_sym_RBRACE, + [112458] = 3, + ACTIONS(3711), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3250), 5, - anon_sym_DOT, + ACTIONS(4047), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [105309] = 2, + [112471] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3446), 5, + ACTIONS(3809), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [105321] = 2, + [112482] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 5, + ACTIONS(3874), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [105333] = 5, - ACTIONS(3228), 1, - sym_identifier, - STATE(2020), 1, - sym_dotted_name, - STATE(2075), 1, - sym_aliased_import, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [112493] = 5, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2528), 1, + sym_type_parameter, + STATE(2584), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3543), 2, - sym__newline, - anon_sym_SEMI, - [105351] = 2, + [112510] = 5, + ACTIONS(1540), 1, + anon_sym_LBRACK, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2527), 1, + sym_type_parameter, + STATE(2582), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3446), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [105363] = 2, + [112527] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3265), 5, + ACTIONS(3888), 4, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - [105375] = 2, + [112538] = 4, + ACTIONS(4051), 1, + anon_sym_COMMA, + STATE(2250), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3427), 5, + ACTIONS(4049), 2, + sym__newline, + anon_sym_SEMI, + [112553] = 5, + ACTIONS(3707), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105387] = 6, - ACTIONS(2919), 1, - anon_sym_and, - ACTIONS(2921), 1, - anon_sym_or, - ACTIONS(2947), 1, + ACTIONS(4056), 1, anon_sym_as, - ACTIONS(2949), 1, - anon_sym_if, - ACTIONS(3545), 1, - anon_sym_else, + STATE(2293), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105407] = 2, + [112570] = 5, + ACTIONS(3424), 1, + sym_identifier, + STATE(2021), 1, + sym_dotted_name, + STATE(2242), 1, + sym_aliased_import, + STATE(2535), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3260), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [105419] = 6, - ACTIONS(3228), 1, + [112587] = 5, + ACTIONS(3918), 1, sym_identifier, - ACTIONS(3547), 1, - anon_sym_LPAREN, - STATE(1917), 1, + STATE(2251), 1, sym_dotted_name, - STATE(2022), 1, + STATE(2265), 1, sym_aliased_import, - STATE(2303), 1, + STATE(2637), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105439] = 2, + [112604] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3273), 5, - anon_sym_DOT, + ACTIONS(3884), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [105451] = 2, + anon_sym_RBRACE, + [112615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3277), 5, - anon_sym_DOT, + ACTIONS(3880), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_as, anon_sym_PIPE, - [105463] = 4, - ACTIONS(3044), 1, + anon_sym_RBRACE, + [112626] = 4, + ACTIONS(3085), 1, + anon_sym_RPAREN, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(1914), 1, - aux_sym_assert_statement_repeat1, + STATE(2299), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3549), 2, - sym__newline, - anon_sym_SEMI, - [105478] = 5, - ACTIONS(3444), 1, - anon_sym_RPAREN, - ACTIONS(3551), 1, - sym_identifier, - STATE(2130), 1, - sym_dotted_name, - STATE(2254), 1, - sym_aliased_import, + [112640] = 4, + ACTIONS(3469), 1, + anon_sym_COMMA, + ACTIONS(3471), 1, + anon_sym_RBRACE, + STATE(2453), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105495] = 4, - ACTIONS(3555), 1, - anon_sym_DOT, - STATE(1986), 1, - aux_sym_import_prefix_repeat1, + [112654] = 4, + ACTIONS(4058), 1, + anon_sym_COMMA, + ACTIONS(4060), 1, + anon_sym_RBRACK, + STATE(2311), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3553), 2, - anon_sym_import, - sym_identifier, - [105510] = 4, - ACTIONS(3560), 1, + [112668] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2018), 1, - aux_sym__import_list_repeat1, + ACTIONS(4064), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, - sym__newline, - anon_sym_SEMI, - [105525] = 4, - ACTIONS(3562), 1, + [112682] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - STATE(2018), 1, - aux_sym__import_list_repeat1, + ACTIONS(3062), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3558), 2, - sym__newline, - anon_sym_SEMI, - [105540] = 4, - ACTIONS(3566), 1, + [112696] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(1989), 1, - aux_sym_global_statement_repeat1, + ACTIONS(4066), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, - sym__newline, + [112710] = 4, + ACTIONS(4068), 1, anon_sym_SEMI, - [105555] = 5, - ACTIONS(3569), 1, - anon_sym_case, - ACTIONS(3571), 1, - sym__dedent, - STATE(2001), 1, - aux_sym__match_block_repeat1, - STATE(2290), 1, - sym_case_clause, + ACTIONS(4070), 1, + sym__newline, + STATE(2444), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105572] = 4, - ACTIONS(3575), 1, + [112724] = 4, + ACTIONS(2887), 1, + anon_sym_RBRACK, + ACTIONS(4072), 1, anon_sym_COMMA, - STATE(1999), 1, - aux_sym_print_statement_repeat1, + STATE(2263), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3573), 2, - sym__newline, - anon_sym_SEMI, - [105587] = 4, - ACTIONS(3579), 1, + [112738] = 4, + ACTIONS(3001), 1, + anon_sym_RBRACK, + ACTIONS(3040), 1, anon_sym_COMMA, - STATE(1989), 1, - aux_sym_global_statement_repeat1, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3577), 2, - sym__newline, - anon_sym_SEMI, - [105602] = 4, - ACTIONS(3583), 1, + [112752] = 4, + ACTIONS(3707), 1, + anon_sym_RPAREN, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(1999), 1, - aux_sym_print_statement_repeat1, + STATE(2291), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3581), 2, - sym__newline, - anon_sym_SEMI, - [105617] = 4, - ACTIONS(3044), 1, + [112766] = 3, + ACTIONS(3912), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3908), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1914), 1, + [112778] = 4, + ACTIONS(3242), 1, + anon_sym_RPAREN, + ACTIONS(4075), 1, + anon_sym_COMMA, + STATE(2267), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3585), 2, - sym__newline, - anon_sym_SEMI, - [105632] = 5, - ACTIONS(3569), 1, - anon_sym_case, - ACTIONS(3587), 1, - sym__dedent, - STATE(2014), 1, - aux_sym__match_block_repeat1, - STATE(2290), 1, - sym_case_clause, + [112792] = 3, + ACTIONS(4078), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105649] = 5, - ACTIONS(3438), 1, + ACTIONS(3908), 2, anon_sym_RPAREN, - ACTIONS(3589), 1, anon_sym_COMMA, - ACTIONS(3591), 1, - anon_sym_as, - STATE(2117), 1, - aux_sym__import_list_repeat1, + [112804] = 4, + ACTIONS(3356), 1, + anon_sym_COMMA, + ACTIONS(3358), 1, + anon_sym_RBRACE, + STATE(2282), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105666] = 4, - ACTIONS(3593), 1, + [112818] = 4, + ACTIONS(1276), 1, + anon_sym_RPAREN, + ACTIONS(4080), 1, anon_sym_COMMA, - STATE(1914), 1, + STATE(2267), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1424), 2, + [112832] = 4, + ACTIONS(1270), 1, + anon_sym_RBRACE, + ACTIONS(4082), 1, + anon_sym_COMMA, + STATE(2278), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112846] = 4, + ACTIONS(626), 1, sym__newline, + ACTIONS(4084), 1, anon_sym_SEMI, - [105681] = 2, + STATE(2378), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3374), 4, - anon_sym_DOT, + [112860] = 4, + ACTIONS(2729), 1, + sym_identifier, + ACTIONS(4086), 1, + anon_sym_import, + STATE(2750), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112874] = 4, + ACTIONS(3001), 1, anon_sym_RPAREN, + ACTIONS(3056), 1, anon_sym_COMMA, - anon_sym_as, - [105692] = 4, - ACTIONS(3597), 1, - anon_sym_COMMA, - STATE(1999), 1, - aux_sym_print_statement_repeat1, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3595), 2, - sym__newline, - anon_sym_SEMI, - [105707] = 5, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2296), 1, - sym_type_parameter, - STATE(2297), 1, - sym_parameters, + [112888] = 4, + ACTIONS(4060), 1, + anon_sym_RPAREN, + ACTIONS(4088), 1, + anon_sym_COMMA, + STATE(2506), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105724] = 5, - ACTIONS(3602), 1, - anon_sym_case, - ACTIONS(3605), 1, - sym__dedent, - STATE(2001), 1, - aux_sym__match_block_repeat1, - STATE(2290), 1, - sym_case_clause, + [112902] = 4, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(4090), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105741] = 4, - ACTIONS(3579), 1, + [112916] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - STATE(1989), 1, - aux_sym_global_statement_repeat1, + ACTIONS(4092), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3607), 2, - sym__newline, - anon_sym_SEMI, - [105756] = 5, - ACTIONS(3297), 1, + [112930] = 4, + ACTIONS(3499), 1, + anon_sym_RBRACE, + ACTIONS(4094), 1, anon_sym_COMMA, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_PIPE, + STATE(2278), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105773] = 5, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3510), 1, - anon_sym_COLON, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3609), 1, - anon_sym_EQ, + [112944] = 4, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105790] = 5, - ACTIONS(3569), 1, - anon_sym_case, - ACTIONS(3611), 1, - sym__dedent, - STATE(1990), 1, - aux_sym__match_block_repeat1, - STATE(2290), 1, - sym_case_clause, + [112958] = 4, + ACTIONS(2691), 1, + anon_sym_RPAREN, + ACTIONS(4097), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105807] = 4, - ACTIONS(3579), 1, - anon_sym_COMMA, - STATE(2002), 1, - aux_sym_global_statement_repeat1, + [112972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3613), 2, + ACTIONS(4099), 3, sym__newline, anon_sym_SEMI, - [105822] = 2, + anon_sym_COMMA, + [112982] = 4, + ACTIONS(1308), 1, + anon_sym_RBRACE, + ACTIONS(4101), 1, + anon_sym_COMMA, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3615), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [105833] = 5, - ACTIONS(3444), 1, - anon_sym_RPAREN, - ACTIONS(3551), 1, - sym_identifier, - STATE(2130), 1, - sym_dotted_name, - STATE(2254), 1, - sym_aliased_import, + [112996] = 4, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4103), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105850] = 4, - ACTIONS(3579), 1, + [113010] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(1992), 1, - aux_sym_global_statement_repeat1, + ACTIONS(4105), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3617), 2, + [113024] = 4, + ACTIONS(4107), 1, sym__newline, - anon_sym_SEMI, - [105865] = 5, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2253), 1, - sym_type_parameter, - STATE(2345), 1, - sym_parameters, + ACTIONS(4109), 1, + sym__indent, + STATE(737), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105882] = 5, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(3619), 1, - anon_sym_RBRACE, - ACTIONS(3621), 1, - sym_type_conversion, - STATE(2491), 1, - sym_format_specifier, + [113038] = 4, + ACTIONS(4111), 1, + anon_sym_SEMI, + ACTIONS(4113), 1, + sym__newline, + STATE(2272), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105899] = 5, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(3551), 1, - sym_identifier, - STATE(2130), 1, - sym_dotted_name, - STATE(2254), 1, - sym_aliased_import, + [113052] = 3, + ACTIONS(1711), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105916] = 5, - ACTIONS(3551), 1, - sym_identifier, - STATE(1996), 1, - sym_dotted_name, - STATE(2103), 1, - sym_aliased_import, - STATE(2370), 1, - sym__import_list, + ACTIONS(1713), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113064] = 4, + ACTIONS(4115), 1, + anon_sym_RPAREN, + ACTIONS(4117), 1, + anon_sym_COMMA, + STATE(2325), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105933] = 5, - ACTIONS(3569), 1, - anon_sym_case, - ACTIONS(3623), 1, - sym__dedent, - STATE(2001), 1, - aux_sym__match_block_repeat1, - STATE(2290), 1, - sym_case_clause, + [113078] = 4, + ACTIONS(4119), 1, + anon_sym_RPAREN, + ACTIONS(4121), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105950] = 5, - ACTIONS(3551), 1, - sym_identifier, - STATE(1996), 1, - sym_dotted_name, - STATE(2103), 1, - sym_aliased_import, - STATE(2541), 1, - sym__import_list, + [113092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105967] = 4, - ACTIONS(3627), 1, + ACTIONS(2416), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [113102] = 4, + ACTIONS(3997), 1, + anon_sym_RPAREN, + ACTIONS(4123), 1, anon_sym_COMMA, - STATE(1991), 1, - aux_sym_print_statement_repeat1, + STATE(2351), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3625), 2, - sym__newline, - anon_sym_SEMI, - [105982] = 4, - ACTIONS(3629), 1, + [113116] = 4, + ACTIONS(3268), 1, anon_sym_COMMA, - STATE(2017), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3270), 1, + anon_sym_RBRACK, + STATE(2304), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3632), 2, - anon_sym_if, - anon_sym_COLON, - [105997] = 4, - ACTIONS(3636), 1, + [113130] = 4, + ACTIONS(3997), 1, + anon_sym_RPAREN, + ACTIONS(4125), 1, anon_sym_COMMA, - STATE(2018), 1, + STATE(2351), 1, aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3634), 2, - sym__newline, - anon_sym_SEMI, - [106012] = 4, - ACTIONS(3641), 1, - anon_sym_COLON, - ACTIONS(3643), 1, - anon_sym_EQ, + [113144] = 4, + ACTIONS(1270), 1, + anon_sym_RBRACK, + ACTIONS(4127), 1, + anon_sym_COMMA, + STATE(2344), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, + [113158] = 4, + ACTIONS(3499), 1, anon_sym_RPAREN, + ACTIONS(4129), 1, anon_sym_COMMA, - [106027] = 3, - ACTIONS(3442), 1, - anon_sym_as, + STATE(2295), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113172] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, + ACTIONS(4047), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [106040] = 4, - ACTIONS(3649), 1, - anon_sym_DOT, - STATE(1986), 1, - aux_sym_import_prefix_repeat1, + [113182] = 4, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4132), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 2, - anon_sym_import, - sym_identifier, - [106055] = 4, - ACTIONS(3440), 1, + [113196] = 4, + ACTIONS(4134), 1, anon_sym_COMMA, - STATE(1988), 1, - aux_sym__import_list_repeat1, + ACTIONS(4137), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3438), 2, - sym__newline, - anon_sym_SEMI, - [106070] = 5, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2261), 1, - sym_type_parameter, - STATE(2313), 1, - sym_parameters, + [113210] = 4, + ACTIONS(1226), 1, + anon_sym_RPAREN, + ACTIONS(4139), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106087] = 5, - ACTIONS(1554), 1, - anon_sym_LBRACK, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2260), 1, - sym_type_parameter, - STATE(2310), 1, - sym_parameters, + [113224] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2914), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [113234] = 4, + ACTIONS(1224), 1, + anon_sym_RPAREN, + ACTIONS(4141), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106104] = 5, - ACTIONS(3472), 1, + [113248] = 4, + ACTIONS(3745), 1, anon_sym_COLON, - ACTIONS(3651), 1, + ACTIONS(4143), 1, anon_sym_RBRACE, - ACTIONS(3653), 1, - sym_type_conversion, - STATE(2490), 1, + STATE(2642), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106121] = 5, - ACTIONS(3228), 1, - sym_identifier, - STATE(1917), 1, - sym_dotted_name, - STATE(2022), 1, - sym_aliased_import, - STATE(2275), 1, - sym__import_list, + [113262] = 4, + ACTIONS(4145), 1, + anon_sym_COMMA, + ACTIONS(4147), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106138] = 4, - ACTIONS(1997), 1, + [113276] = 4, + ACTIONS(4149), 1, + anon_sym_COMMA, + ACTIONS(4151), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113290] = 4, + ACTIONS(2669), 1, anon_sym_RPAREN, - ACTIONS(3655), 1, + ACTIONS(4153), 1, anon_sym_COMMA, - STATE(2227), 1, - aux_sym__patterns_repeat1, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106152] = 4, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(3657), 1, - anon_sym_RBRACE, - STATE(2497), 1, - sym_format_specifier, + [113304] = 4, + ACTIONS(1276), 1, + anon_sym_RBRACK, + ACTIONS(4155), 1, + anon_sym_COMMA, + STATE(2514), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106166] = 4, - ACTIONS(3659), 1, + [113318] = 4, + ACTIONS(3516), 1, anon_sym_COMMA, - ACTIONS(3661), 1, + ACTIONS(4157), 1, anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2441), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106180] = 4, - ACTIONS(3372), 1, - anon_sym_import, - ACTIONS(3663), 1, - anon_sym_DOT, - STATE(2111), 1, - aux_sym_dotted_name_repeat1, + [113332] = 4, + ACTIONS(1144), 1, + anon_sym_RPAREN, + ACTIONS(4159), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106194] = 4, - ACTIONS(3665), 1, - sym__newline, - ACTIONS(3667), 1, - sym__indent, - STATE(780), 1, - sym__match_block, + [113346] = 4, + ACTIONS(4161), 1, + anon_sym_COMMA, + ACTIONS(4164), 1, + anon_sym_COLON, + STATE(2309), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106208] = 4, - ACTIONS(3669), 1, + [113360] = 4, + ACTIONS(3272), 1, anon_sym_COMMA, - ACTIONS(3671), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + ACTIONS(3274), 1, + anon_sym_RBRACK, + STATE(2372), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106222] = 4, - ACTIONS(3669), 1, + [113374] = 4, + ACTIONS(1955), 1, + anon_sym_RBRACK, + ACTIONS(4166), 1, anon_sym_COMMA, - ACTIONS(3673), 1, - anon_sym_in, - STATE(2169), 1, + STATE(2263), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106236] = 4, - ACTIONS(3675), 1, - anon_sym_SEMI, - ACTIONS(3677), 1, - sym__newline, - STATE(2055), 1, - aux_sym__simple_statements_repeat1, + [113388] = 4, + ACTIONS(4168), 1, + anon_sym_COMMA, + ACTIONS(4170), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106250] = 4, - ACTIONS(3679), 1, - anon_sym_SEMI, - ACTIONS(3681), 1, - sym__newline, - STATE(2203), 1, - aux_sym__simple_statements_repeat1, + [113402] = 4, + ACTIONS(4172), 1, + anon_sym_COMMA, + ACTIONS(4174), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106264] = 4, - ACTIONS(3683), 1, - anon_sym_SEMI, - ACTIONS(3685), 1, - sym__newline, - STATE(2174), 1, - aux_sym__simple_statements_repeat1, + [113416] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4176), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113430] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106278] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3687), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + [113444] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4180), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106292] = 4, - ACTIONS(2804), 1, + [113458] = 4, + ACTIONS(2677), 1, anon_sym_RBRACK, - ACTIONS(2856), 1, + ACTIONS(4182), 1, anon_sym_COMMA, - STATE(2125), 1, - aux_sym__collection_elements_repeat1, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106306] = 4, - ACTIONS(3689), 1, + [113472] = 4, + ACTIONS(4184), 1, + anon_sym_RPAREN, + ACTIONS(4186), 1, anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_RBRACK, - STATE(2140), 1, - aux_sym__patterns_repeat1, + STATE(2365), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106320] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2870), 1, + [113486] = 4, + ACTIONS(2679), 1, anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4188), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106334] = 4, - ACTIONS(3019), 1, + [113500] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4190), 1, anon_sym_COLON, - ACTIONS(3693), 1, - anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106348] = 4, - ACTIONS(3696), 1, - anon_sym_RPAREN, - ACTIONS(3698), 1, + [113514] = 4, + ACTIONS(4192), 1, anon_sym_COMMA, - STATE(2059), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4194), 1, + anon_sym_RBRACE, + STATE(2333), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106362] = 4, - ACTIONS(2876), 1, - anon_sym_RPAREN, - ACTIONS(2878), 1, - anon_sym_COMMA, - STATE(2064), 1, - aux_sym_argument_list_repeat1, + [113528] = 3, + ACTIONS(4198), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106376] = 4, - ACTIONS(3665), 1, - sym__newline, - ACTIONS(3667), 1, - sym__indent, - STATE(844), 1, - sym__match_block, + ACTIONS(4196), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [113540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106390] = 4, - ACTIONS(3700), 1, + ACTIONS(1647), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3702), 1, - anon_sym_COLON, - STATE(2205), 1, - aux_sym_match_statement_repeat1, + anon_sym_EQ, + [113550] = 4, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4200), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106404] = 4, - ACTIONS(3704), 1, + [113564] = 4, + ACTIONS(2979), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, anon_sym_COMMA, - ACTIONS(3706), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2384), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106418] = 4, - ACTIONS(3220), 1, - sym_identifier, - ACTIONS(3708), 1, - anon_sym_import, - STATE(2529), 1, - sym_dotted_name, + [113578] = 4, + ACTIONS(3097), 1, + anon_sym_RPAREN, + ACTIONS(3099), 1, + anon_sym_COMMA, + STATE(2363), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106432] = 4, - ACTIONS(3710), 1, - sym__newline, - ACTIONS(3712), 1, - sym__indent, - STATE(755), 1, - sym__match_block, + [113592] = 3, + ACTIONS(1667), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106446] = 3, - ACTIONS(3405), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + ACTIONS(1665), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113604] = 4, + ACTIONS(2701), 1, + anon_sym_RPAREN, + ACTIONS(4204), 1, + anon_sym_COMMA, + STATE(2415), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3407), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106458] = 3, - ACTIONS(3246), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113618] = 3, + ACTIONS(3900), 1, + anon_sym_as, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3248), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106470] = 4, - ACTIONS(3109), 1, + ACTIONS(3942), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RBRACE, - STATE(2066), 1, - aux_sym_dictionary_repeat1, + [113630] = 4, + ACTIONS(2659), 1, + anon_sym_RBRACK, + ACTIONS(4206), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106484] = 4, - ACTIONS(1270), 1, - anon_sym_COLON, - ACTIONS(3714), 1, + [113644] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2041), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4208), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113658] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106498] = 4, - ACTIONS(2804), 1, + ACTIONS(3944), 3, anon_sym_RPAREN, - ACTIONS(2816), 1, anon_sym_COMMA, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + anon_sym_as, + [113668] = 4, + ACTIONS(4210), 1, + anon_sym_COMMA, + ACTIONS(4212), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106512] = 3, - ACTIONS(3391), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113682] = 4, + ACTIONS(3821), 1, + anon_sym_LPAREN, + ACTIONS(4214), 1, + anon_sym_COLON, + STATE(2618), 1, + sym_argument_list, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3393), 2, - anon_sym_LBRACE, + [113696] = 4, + ACTIONS(4216), 1, + anon_sym_COMMA, + ACTIONS(4218), 1, anon_sym_RBRACE, - [106524] = 4, - ACTIONS(632), 1, - sym__newline, - ACTIONS(3716), 1, - anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106538] = 4, - ACTIONS(3691), 1, + [113710] = 4, + ACTIONS(1416), 1, anon_sym_RPAREN, - ACTIONS(3718), 1, + ACTIONS(4220), 1, anon_sym_COMMA, - STATE(2027), 1, - aux_sym__patterns_repeat1, + STATE(2379), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106552] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3720), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + [113724] = 3, + ACTIONS(1671), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106566] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3722), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + ACTIONS(1669), 2, + anon_sym_except_STAR, + anon_sym_finally, + [113736] = 3, + ACTIONS(3238), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106580] = 4, - ACTIONS(1182), 1, + ACTIONS(3236), 2, + sym__newline, + anon_sym_SEMI, + [113748] = 4, + ACTIONS(2887), 1, anon_sym_RPAREN, - ACTIONS(3724), 1, + ACTIONS(4222), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2339), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106594] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(3726), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, + [113762] = 3, + ACTIONS(3667), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [106608] = 4, - ACTIONS(2816), 1, + ACTIONS(3669), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113774] = 4, + ACTIONS(4225), 1, anon_sym_COMMA, - ACTIONS(3728), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4227), 1, + anon_sym_RBRACE, + STATE(2313), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106622] = 4, - ACTIONS(2816), 1, + [113788] = 4, + ACTIONS(4229), 1, anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4232), 1, + anon_sym_COLON, + STATE(2342), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106636] = 4, - ACTIONS(3730), 1, + [113802] = 4, + ACTIONS(2643), 1, anon_sym_RPAREN, - ACTIONS(3732), 1, + ACTIONS(4234), 1, anon_sym_COMMA, - STATE(2063), 1, - aux_sym__parameters_repeat1, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106650] = 4, - ACTIONS(1132), 1, - anon_sym_RPAREN, - ACTIONS(3735), 1, + [113816] = 4, + ACTIONS(3499), 1, + anon_sym_RBRACK, + ACTIONS(4236), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2344), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106664] = 3, - ACTIONS(3383), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3385), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [106676] = 4, - ACTIONS(1326), 1, - anon_sym_RBRACE, - ACTIONS(3737), 1, + [113830] = 4, + ACTIONS(4239), 1, anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4241), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106690] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3739), 1, + [113844] = 4, + ACTIONS(3242), 1, anon_sym_COLON, + ACTIONS(4243), 1, + anon_sym_COMMA, + STATE(2346), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106704] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3741), 1, - anon_sym_COLON, + [113858] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106718] = 4, - ACTIONS(3228), 1, - sym_identifier, - STATE(2020), 1, - sym_dotted_name, - STATE(2075), 1, - sym_aliased_import, + ACTIONS(3980), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [113868] = 4, + ACTIONS(4107), 1, + sym__newline, + ACTIONS(4109), 1, + sym__indent, + STATE(734), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106732] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3743), 1, - anon_sym_COLON, + [113882] = 4, + ACTIONS(4246), 1, + anon_sym_COMMA, + ACTIONS(4248), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106746] = 4, - ACTIONS(1328), 1, - anon_sym_RBRACE, - ACTIONS(3745), 1, + [113896] = 4, + ACTIONS(2629), 1, + anon_sym_RBRACK, + ACTIONS(4250), 1, anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106760] = 4, - ACTIONS(2838), 1, + [113910] = 4, + ACTIONS(4049), 1, anon_sym_RPAREN, - ACTIONS(2840), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(2083), 1, - aux_sym_argument_list_repeat1, + STATE(2351), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106774] = 4, - ACTIONS(3747), 1, + [113924] = 3, + ACTIONS(4056), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4047), 2, anon_sym_RPAREN, - ACTIONS(3749), 1, anon_sym_COMMA, - STATE(2085), 1, - aux_sym_argument_list_repeat1, + [113936] = 4, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106788] = 4, - ACTIONS(2816), 1, + [113950] = 4, + ACTIONS(4257), 1, anon_sym_COMMA, - ACTIONS(2854), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4260), 1, + anon_sym_RBRACE, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106802] = 2, + [113964] = 4, + ACTIONS(4262), 1, + anon_sym_SEMI, + ACTIONS(4264), 1, + sym__newline, + STATE(2376), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 3, - sym__newline, - anon_sym_SEMI, + [113978] = 4, + ACTIONS(4266), 1, anon_sym_COMMA, - [106812] = 4, - ACTIONS(3066), 1, + ACTIONS(4268), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113992] = 4, + ACTIONS(4270), 1, anon_sym_COMMA, - ACTIONS(3068), 1, + ACTIONS(4272), 1, anon_sym_RBRACK, - STATE(2088), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106826] = 4, - ACTIONS(3751), 1, + [114006] = 4, + ACTIONS(2695), 1, anon_sym_RPAREN, - ACTIONS(3753), 1, + ACTIONS(4274), 1, anon_sym_COMMA, - STATE(2217), 1, - aux_sym__parameters_repeat1, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106840] = 2, + [114020] = 4, + ACTIONS(3319), 1, + anon_sym_COMMA, + ACTIONS(3321), 1, + anon_sym_RBRACK, + STATE(2356), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3755), 3, - sym__newline, - anon_sym_SEMI, + [114034] = 4, + ACTIONS(4276), 1, anon_sym_COMMA, - [106850] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3757), 1, + ACTIONS(4279), 1, anon_sym_COLON, + STATE(2360), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106864] = 4, - ACTIONS(2788), 1, + [114048] = 4, + ACTIONS(3054), 1, + anon_sym_RPAREN, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(2804), 1, - anon_sym_RBRACE, - STATE(2102), 1, + STATE(2493), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106878] = 4, - ACTIONS(3710), 1, - sym__newline, - ACTIONS(3712), 1, - sym__indent, - STATE(751), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [106892] = 3, - ACTIONS(3643), 1, - anon_sym_EQ, + [114062] = 4, + ACTIONS(1276), 1, + anon_sym_COLON, + ACTIONS(4281), 1, + anon_sym_COMMA, + STATE(2346), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [106904] = 4, - ACTIONS(1222), 1, + [114076] = 4, + ACTIONS(1154), 1, anon_sym_RPAREN, - ACTIONS(3759), 1, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2248), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106918] = 4, - ACTIONS(3761), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, + [114090] = 4, + ACTIONS(3516), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4285), 1, + anon_sym_RBRACK, + STATE(2441), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106932] = 4, - ACTIONS(1218), 1, + [114104] = 4, + ACTIONS(1148), 1, anon_sym_RPAREN, - ACTIONS(3766), 1, + ACTIONS(4287), 1, anon_sym_COMMA, - STATE(2248), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106946] = 4, - ACTIONS(3669), 1, + [114118] = 4, + ACTIONS(4289), 1, anon_sym_COMMA, - ACTIONS(3768), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + ACTIONS(4291), 1, + anon_sym_COLON, + STATE(2443), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106960] = 4, - ACTIONS(3770), 1, + [114132] = 4, + ACTIONS(4293), 1, anon_sym_COMMA, - ACTIONS(3772), 1, + ACTIONS(4295), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106974] = 4, - ACTIONS(3774), 1, + [114146] = 4, + ACTIONS(4297), 1, anon_sym_COMMA, - ACTIONS(3776), 1, + ACTIONS(4299), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106988] = 3, - ACTIONS(3778), 1, - anon_sym_COLON, + [114160] = 4, + ACTIONS(4301), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_RPAREN, + [114174] = 4, + ACTIONS(3336), 1, anon_sym_COMMA, - [107000] = 4, - ACTIONS(3669), 1, + ACTIONS(3338), 1, + anon_sym_RBRACK, + STATE(2367), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114188] = 4, + ACTIONS(3384), 1, anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + ACTIONS(3386), 1, + anon_sym_RBRACE, + STATE(2385), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107014] = 4, - ACTIONS(3309), 1, + [114202] = 4, + ACTIONS(4305), 1, anon_sym_COMMA, - ACTIONS(3782), 1, + ACTIONS(4307), 1, anon_sym_RBRACK, - STATE(2165), 1, - aux_sym_type_parameter_repeat1, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107028] = 4, - ACTIONS(3665), 1, + [114216] = 4, + ACTIONS(4309), 1, sym__newline, - ACTIONS(3667), 1, + ACTIONS(4311), 1, sym__indent, - STATE(822), 1, + STATE(768), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107042] = 4, - ACTIONS(3283), 1, - anon_sym_RBRACK, - ACTIONS(3784), 1, - anon_sym_COMMA, - STATE(2093), 1, - aux_sym__collection_elements_repeat1, + [114230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107056] = 4, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, - anon_sym_COLON, - STATE(2442), 1, - sym_argument_list, + ACTIONS(3634), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [114240] = 3, + ACTIONS(4315), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4313), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114252] = 4, + ACTIONS(634), 1, + sym__newline, + ACTIONS(4317), 1, + anon_sym_SEMI, + STATE(2378), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107070] = 3, - ACTIONS(1687), 1, - anon_sym_except, + [114266] = 3, + ACTIONS(4321), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 2, - anon_sym_except_STAR, - anon_sym_finally, - [107082] = 4, - ACTIONS(3789), 1, + ACTIONS(4319), 2, + sym__newline, anon_sym_SEMI, - ACTIONS(3792), 1, + [114278] = 4, + ACTIONS(4323), 1, + anon_sym_SEMI, + ACTIONS(4326), 1, sym__newline, - STATE(2096), 1, + STATE(2378), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107096] = 4, - ACTIONS(2677), 1, - anon_sym_in, - ACTIONS(3794), 1, + [114292] = 4, + ACTIONS(4232), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, anon_sym_COMMA, - STATE(2097), 1, - aux_sym__patterns_repeat1, + STATE(2379), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107110] = 4, - ACTIONS(3551), 1, - sym_identifier, - STATE(2130), 1, - sym_dotted_name, - STATE(2254), 1, - sym_aliased_import, + [114306] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4331), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107124] = 4, - ACTIONS(2834), 1, - anon_sym_RPAREN, - ACTIONS(2836), 1, + [114320] = 4, + ACTIONS(4333), 1, anon_sym_COMMA, - STATE(2178), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4335), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107138] = 4, - ACTIONS(3797), 1, + [114334] = 4, + ACTIONS(4337), 1, + anon_sym_COMMA, + ACTIONS(4339), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114348] = 4, + ACTIONS(1166), 1, anon_sym_RPAREN, - ACTIONS(3799), 1, + ACTIONS(4341), 1, anon_sym_COMMA, - STATE(2199), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107152] = 4, - ACTIONS(1316), 1, - anon_sym_RBRACE, - ACTIONS(3801), 1, + [114362] = 4, + ACTIONS(4279), 1, + anon_sym_RPAREN, + ACTIONS(4343), 1, anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + STATE(2384), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107166] = 4, - ACTIONS(1242), 1, + [114376] = 4, + ACTIONS(1298), 1, anon_sym_RBRACE, - ACTIONS(3803), 1, + ACTIONS(4346), 1, anon_sym_COMMA, - STATE(2213), 1, - aux_sym__collection_elements_repeat1, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107180] = 4, - ACTIONS(3438), 1, + [114390] = 4, + ACTIONS(1170), 1, anon_sym_RPAREN, - ACTIONS(3589), 1, + ACTIONS(4348), 1, anon_sym_COMMA, - STATE(2115), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107194] = 3, - ACTIONS(3002), 1, - anon_sym_from, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 2, - sym__newline, - anon_sym_SEMI, - [107206] = 4, - ACTIONS(3032), 1, + [114404] = 4, + ACTIONS(3286), 1, anon_sym_COMMA, - ACTIONS(3034), 1, + ACTIONS(3288), 1, anon_sym_RBRACK, - STATE(2214), 1, + STATE(2381), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107220] = 4, - ACTIONS(2769), 1, + [114418] = 4, + ACTIONS(3745), 1, anon_sym_COLON, - ACTIONS(3805), 1, + ACTIONS(4350), 1, + anon_sym_RBRACE, + STATE(2736), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114432] = 3, + ACTIONS(1657), 1, + anon_sym_except, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1659), 2, + anon_sym_except_STAR, + anon_sym_finally, + [114444] = 4, + ACTIONS(4352), 1, + anon_sym_RPAREN, + ACTIONS(4354), 1, anon_sym_COMMA, - STATE(2163), 1, - aux_sym__parameters_repeat1, + STATE(2383), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107234] = 3, - ACTIONS(3809), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114458] = 4, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(3060), 1, + anon_sym_COMMA, + STATE(2402), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3807), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [107246] = 4, - ACTIONS(1270), 1, + [114472] = 4, + ACTIONS(4356), 1, anon_sym_RPAREN, - ACTIONS(3811), 1, + ACTIONS(4358), 1, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_assert_statement_repeat1, + STATE(2404), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107260] = 4, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(3813), 1, - anon_sym_RBRACE, - STATE(2354), 1, - sym_format_specifier, + [114486] = 4, + ACTIONS(3093), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, + anon_sym_COMMA, + STATE(2386), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107274] = 4, - ACTIONS(3815), 1, - anon_sym_SEMI, - ACTIONS(3817), 1, - sym__newline, - STATE(2131), 1, - aux_sym__simple_statements_repeat1, + [114500] = 4, + ACTIONS(3745), 1, + anon_sym_COLON, + ACTIONS(4360), 1, + anon_sym_RBRACE, + STATE(2690), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107288] = 4, - ACTIONS(3330), 1, - anon_sym_import, - ACTIONS(3663), 1, - anon_sym_DOT, - STATE(2167), 1, - aux_sym_dotted_name_repeat1, + [114514] = 4, + ACTIONS(3332), 1, + anon_sym_COMMA, + ACTIONS(3334), 1, + anon_sym_RBRACK, + STATE(2407), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107302] = 4, - ACTIONS(3819), 1, + [114528] = 4, + ACTIONS(2979), 1, + anon_sym_COLON, + ACTIONS(4362), 1, anon_sym_COMMA, - ACTIONS(3821), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2360), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107316] = 4, - ACTIONS(3823), 1, + [114542] = 4, + ACTIONS(4364), 1, anon_sym_COMMA, - ACTIONS(3825), 1, + ACTIONS(4366), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107330] = 4, - ACTIONS(3082), 1, + [114556] = 4, + ACTIONS(4368), 1, anon_sym_COMMA, - ACTIONS(3084), 1, + ACTIONS(4370), 1, anon_sym_RBRACK, - STATE(2112), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107344] = 4, - ACTIONS(3558), 1, - anon_sym_RPAREN, - ACTIONS(3827), 1, + [114570] = 4, + ACTIONS(4372), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + ACTIONS(4374), 1, + anon_sym_RBRACE, + STATE(2349), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107358] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + [114584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107372] = 4, - ACTIONS(3558), 1, + ACTIONS(2319), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [114594] = 4, + ACTIONS(1146), 1, anon_sym_RPAREN, - ACTIONS(3829), 1, + ACTIONS(4376), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107386] = 4, - ACTIONS(3669), 1, + [114608] = 4, + ACTIONS(1126), 1, + anon_sym_RPAREN, + ACTIONS(4378), 1, anon_sym_COMMA, - ACTIONS(3831), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + STATE(2474), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114622] = 4, + ACTIONS(3745), 1, + anon_sym_COLON, + ACTIONS(4380), 1, + anon_sym_RBRACE, + STATE(2652), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107400] = 4, - ACTIONS(3634), 1, + [114636] = 4, + ACTIONS(1184), 1, anon_sym_RPAREN, - ACTIONS(3833), 1, + ACTIONS(4382), 1, anon_sym_COMMA, - STATE(2119), 1, - aux_sym__import_list_repeat1, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107414] = 2, + [114650] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 3, + ACTIONS(1647), 3, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - [107424] = 4, - ACTIONS(3836), 1, + [114660] = 4, + ACTIONS(4384), 1, anon_sym_COMMA, - ACTIONS(3838), 1, + ACTIONS(4386), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107438] = 4, - ACTIONS(3840), 1, + [114674] = 4, + ACTIONS(4388), 1, anon_sym_COMMA, - ACTIONS(3842), 1, + ACTIONS(4390), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107452] = 4, - ACTIONS(3086), 1, + [114688] = 4, + ACTIONS(3516), 1, anon_sym_COMMA, - ACTIONS(3088), 1, + ACTIONS(4392), 1, anon_sym_RBRACK, - STATE(2121), 1, - aux_sym_subscript_repeat1, + STATE(2441), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107466] = 4, - ACTIONS(3844), 1, + [114702] = 4, + ACTIONS(3442), 1, anon_sym_COMMA, - ACTIONS(3846), 1, - anon_sym_COLON, - STATE(2159), 1, - aux_sym_with_clause_repeat1, + ACTIONS(3444), 1, + anon_sym_RBRACE, + STATE(2411), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107480] = 4, - ACTIONS(1242), 1, - anon_sym_RBRACK, - ACTIONS(3848), 1, + [114716] = 4, + ACTIONS(1282), 1, + anon_sym_RBRACE, + ACTIONS(4394), 1, anon_sym_COMMA, - STATE(2093), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107494] = 2, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2704), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [107504] = 4, - ACTIONS(3216), 1, - anon_sym_COMMA, - ACTIONS(3218), 1, + [114730] = 4, + ACTIONS(1284), 1, anon_sym_RBRACE, - STATE(2139), 1, + ACTIONS(4396), 1, + anon_sym_COMMA, + STATE(2354), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107518] = 4, - ACTIONS(3850), 1, + [114744] = 4, + ACTIONS(2989), 1, anon_sym_COMMA, - ACTIONS(3853), 1, + ACTIONS(3001), 1, anon_sym_RBRACE, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + STATE(2271), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107532] = 4, - ACTIONS(3665), 1, - sym__newline, - ACTIONS(3667), 1, - sym__indent, - STATE(825), 1, - sym__match_block, + [114758] = 4, + ACTIONS(3424), 1, + sym_identifier, + STATE(2244), 1, + sym_dotted_name, + STATE(2296), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107546] = 3, - ACTIONS(3591), 1, - anon_sym_as, + [114772] = 4, + ACTIONS(3544), 1, + anon_sym_PIPE, + ACTIONS(4398), 1, + anon_sym_COLON, + STATE(1926), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, + [114786] = 4, + ACTIONS(3942), 1, anon_sym_RPAREN, + ACTIONS(4400), 1, anon_sym_COMMA, - [107558] = 4, - ACTIONS(638), 1, - sym__newline, - ACTIONS(3855), 1, - anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107572] = 3, - ACTIONS(3859), 1, - anon_sym_in, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3857), 2, + [114800] = 4, + ACTIONS(628), 1, sym__newline, + ACTIONS(4403), 1, anon_sym_SEMI, - [107584] = 4, - ACTIONS(3861), 1, - anon_sym_COMMA, - ACTIONS(3863), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107598] = 4, - ACTIONS(3865), 1, - anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107612] = 4, - ACTIONS(1196), 1, - anon_sym_RPAREN, - ACTIONS(3869), 1, - anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107626] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3871), 1, - anon_sym_COLON, + STATE(2378), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107640] = 4, - ACTIONS(1192), 1, - anon_sym_RPAREN, - ACTIONS(3873), 1, + [114814] = 4, + ACTIONS(3438), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3440), 1, + anon_sym_RBRACE, + STATE(2410), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107654] = 4, - ACTIONS(2677), 1, - anon_sym_RBRACK, - ACTIONS(3875), 1, - anon_sym_COMMA, - STATE(2138), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, + [114828] = 3, + ACTIONS(3626), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [107668] = 4, - ACTIONS(1300), 1, + ACTIONS(3628), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3878), 1, - anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107682] = 4, - ACTIONS(1997), 1, - anon_sym_RBRACK, - ACTIONS(3880), 1, + [114840] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - STATE(2138), 1, + ACTIONS(4405), 1, + anon_sym_in, + STATE(2507), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107696] = 3, - ACTIONS(1679), 1, - anon_sym_except, + [114854] = 4, + ACTIONS(4407), 1, + anon_sym_COMMA, + ACTIONS(4409), 1, + anon_sym_RBRACE, + STATE(2431), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 2, - anon_sym_except_STAR, - anon_sym_finally, - [107708] = 4, - ACTIONS(2816), 1, + [114868] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(3882), 1, + ACTIONS(3107), 1, anon_sym_RPAREN, - STATE(2228), 1, + STATE(2493), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107722] = 4, - ACTIONS(3024), 1, + [114882] = 4, + ACTIONS(4411), 1, anon_sym_COMMA, - ACTIONS(3028), 1, + ACTIONS(4414), 1, anon_sym_RBRACK, - STATE(2133), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107736] = 4, - ACTIONS(3019), 1, - anon_sym_RBRACK, - ACTIONS(3884), 1, - anon_sym_COMMA, - STATE(2144), 1, - aux_sym_assert_statement_repeat1, + [114896] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4416), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107750] = 4, - ACTIONS(2890), 1, - anon_sym_RPAREN, - ACTIONS(2892), 1, - anon_sym_COMMA, - STATE(2156), 1, - aux_sym_argument_list_repeat1, + [114910] = 4, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4420), 1, + sym__newline, + STATE(2416), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107764] = 4, - ACTIONS(3887), 1, - anon_sym_RPAREN, - ACTIONS(3889), 1, - anon_sym_COMMA, - STATE(2158), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, + [114924] = 3, + ACTIONS(3603), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [107778] = 4, - ACTIONS(3019), 1, + ACTIONS(3605), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114936] = 4, + ACTIONS(2667), 1, anon_sym_RPAREN, - ACTIONS(3891), 1, + ACTIONS(4422), 1, anon_sym_COMMA, - STATE(2147), 1, - aux_sym_assert_statement_repeat1, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107792] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3894), 1, - anon_sym_COLON, + [114950] = 3, + ACTIONS(4424), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107806] = 4, - ACTIONS(3105), 1, + ACTIONS(3908), 2, anon_sym_COMMA, - ACTIONS(3107), 1, + anon_sym_COLON, + [114962] = 4, + ACTIONS(2665), 1, anon_sym_RBRACK, - STATE(2161), 1, - aux_sym_subscript_repeat1, + ACTIONS(4426), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107820] = 4, - ACTIONS(3458), 1, - anon_sym_LPAREN, - ACTIONS(3896), 1, + [114976] = 4, + ACTIONS(4115), 1, anon_sym_COLON, - STATE(2445), 1, - sym_argument_list, + ACTIONS(4428), 1, + anon_sym_COMMA, + STATE(2396), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107834] = 4, - ACTIONS(3898), 1, - anon_sym_RPAREN, - ACTIONS(3900), 1, + [114990] = 4, + ACTIONS(4309), 1, + sym__newline, + ACTIONS(4311), 1, + sym__indent, + STATE(765), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115004] = 4, + ACTIONS(4430), 1, anon_sym_COMMA, - STATE(2135), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4432), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107848] = 3, - ACTIONS(1677), 1, - anon_sym_except, + [115018] = 4, + ACTIONS(4107), 1, + sym__newline, + ACTIONS(4109), 1, + sym__indent, + STATE(822), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1675), 2, - anon_sym_except_STAR, - anon_sym_finally, - [107860] = 4, - ACTIONS(3283), 1, - anon_sym_RPAREN, - ACTIONS(3902), 1, + [115032] = 4, + ACTIONS(4434), 1, anon_sym_COMMA, - STATE(2153), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4436), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107874] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3905), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + [115046] = 3, + ACTIONS(4424), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107888] = 3, - ACTIONS(3421), 1, + ACTIONS(3908), 2, + anon_sym_COMMA, + anon_sym_COLON, + [115058] = 3, + ACTIONS(3599), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3423), 2, + ACTIONS(3601), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [107900] = 4, - ACTIONS(1146), 1, - anon_sym_RPAREN, - ACTIONS(3907), 1, + [115070] = 4, + ACTIONS(3315), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3317), 1, + anon_sym_RBRACK, + STATE(2397), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107914] = 4, - ACTIONS(2830), 1, + [115084] = 4, + ACTIONS(4438), 1, anon_sym_RPAREN, - ACTIONS(2832), 1, + ACTIONS(4440), 1, anon_sym_COMMA, - STATE(2137), 1, + STATE(2401), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107928] = 4, - ACTIONS(1144), 1, + [115098] = 4, + ACTIONS(3081), 1, anon_sym_RPAREN, - ACTIONS(3909), 1, + ACTIONS(3083), 1, anon_sym_COMMA, - STATE(2248), 1, + STATE(2308), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107942] = 4, - ACTIONS(1426), 1, - anon_sym_COLON, - ACTIONS(3911), 1, - anon_sym_COMMA, - STATE(2252), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, + [115112] = 3, + ACTIONS(3587), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [107956] = 4, - ACTIONS(3913), 1, + ACTIONS(3589), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115124] = 4, + ACTIONS(2693), 1, + anon_sym_RPAREN, + ACTIONS(4442), 1, anon_sym_COMMA, - ACTIONS(3915), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2415), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107970] = 4, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(3919), 1, + [115138] = 4, + ACTIONS(3771), 1, anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107984] = 4, - ACTIONS(3309), 1, + ACTIONS(4444), 1, anon_sym_COMMA, - ACTIONS(3921), 1, - anon_sym_RBRACK, - STATE(2165), 1, + STATE(2441), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107998] = 4, - ACTIONS(3730), 1, - anon_sym_COLON, - ACTIONS(3923), 1, - anon_sym_COMMA, - STATE(2163), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108012] = 4, - ACTIONS(1318), 1, - anon_sym_RBRACE, - ACTIONS(3926), 1, - anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108026] = 4, - ACTIONS(3500), 1, - anon_sym_RBRACK, - ACTIONS(3928), 1, + [115152] = 4, + ACTIONS(2887), 1, + anon_sym_in, + ACTIONS(4447), 1, anon_sym_COMMA, - STATE(2165), 1, - aux_sym_type_parameter_repeat1, + STATE(2442), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108040] = 4, - ACTIONS(3472), 1, + [115166] = 4, + ACTIONS(1422), 1, anon_sym_COLON, - ACTIONS(3931), 1, - anon_sym_RBRACE, - STATE(2480), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108054] = 4, - ACTIONS(3374), 1, - anon_sym_import, - ACTIONS(3933), 1, - anon_sym_DOT, - STATE(2167), 1, - aux_sym_dotted_name_repeat1, + ACTIONS(4450), 1, + anon_sym_COMMA, + STATE(2342), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108068] = 4, - ACTIONS(658), 1, + [115180] = 4, + ACTIONS(644), 1, sym__newline, - ACTIONS(3936), 1, + ACTIONS(4452), 1, anon_sym_SEMI, - STATE(2096), 1, + STATE(2378), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108082] = 4, - ACTIONS(978), 1, - anon_sym_in, - ACTIONS(3938), 1, - anon_sym_COMMA, - STATE(2097), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108096] = 4, - ACTIONS(3940), 1, - anon_sym_RPAREN, - ACTIONS(3942), 1, + [115194] = 4, + ACTIONS(4454), 1, anon_sym_COMMA, - STATE(2242), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4456), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108110] = 4, - ACTIONS(3191), 1, + [115208] = 4, + ACTIONS(4458), 1, anon_sym_COMMA, - ACTIONS(3193), 1, - anon_sym_RBRACE, - STATE(2164), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4460), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108124] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(3944), 1, + [115222] = 4, + ACTIONS(3821), 1, + anon_sym_LPAREN, + ACTIONS(4462), 1, anon_sym_COLON, + STATE(2718), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108138] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + [115236] = 4, + ACTIONS(3918), 1, + sym_identifier, + STATE(2352), 1, + sym_dotted_name, + STATE(2595), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108152] = 4, - ACTIONS(628), 1, - sym__newline, - ACTIONS(3946), 1, - anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, + [115250] = 4, + ACTIONS(1200), 1, + anon_sym_RPAREN, + ACTIONS(4464), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108166] = 4, - ACTIONS(3948), 1, + [115264] = 4, + ACTIONS(4466), 1, anon_sym_SEMI, - ACTIONS(3950), 1, + ACTIONS(4468), 1, sym__newline, - STATE(2194), 1, + STATE(2469), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108180] = 4, - ACTIONS(3952), 1, - anon_sym_SEMI, - ACTIONS(3954), 1, - sym__newline, - STATE(2168), 1, - aux_sym__simple_statements_repeat1, + [115278] = 4, + ACTIONS(1202), 1, + anon_sym_RPAREN, + ACTIONS(4470), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108194] = 3, - ACTIONS(3956), 1, - anon_sym_EQ, + [115292] = 4, + ACTIONS(4309), 1, + sym__newline, + ACTIONS(4311), 1, + sym__indent, + STATE(798), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_COMMA, - anon_sym_COLON, - [108206] = 4, - ACTIONS(1228), 1, - anon_sym_RPAREN, - ACTIONS(3958), 1, + [115306] = 4, + ACTIONS(1304), 1, + anon_sym_RBRACE, + ACTIONS(4472), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108220] = 4, - ACTIONS(3751), 1, - anon_sym_COLON, - ACTIONS(3960), 1, + [115320] = 4, + ACTIONS(3262), 1, anon_sym_COMMA, - STATE(2106), 1, - aux_sym__parameters_repeat1, + ACTIONS(3266), 1, + anon_sym_RBRACK, + STATE(2445), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108234] = 3, - ACTIONS(3956), 1, - anon_sym_EQ, + [115334] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4474), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_COMMA, - anon_sym_COLON, - [108246] = 4, - ACTIONS(2816), 1, + [115348] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(2884), 1, + ACTIONS(3067), 1, anon_sym_RPAREN, - STATE(2228), 1, + STATE(2493), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108260] = 4, - ACTIONS(3962), 1, + [115362] = 4, + ACTIONS(4476), 1, + anon_sym_RPAREN, + ACTIONS(4478), 1, anon_sym_COMMA, - ACTIONS(3964), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2449), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108274] = 4, - ACTIONS(3669), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_in, - STATE(2169), 1, - aux_sym__patterns_repeat1, + [115376] = 3, + ACTIONS(1693), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108288] = 4, - ACTIONS(3968), 1, + ACTIONS(1695), 2, + anon_sym_except_STAR, + anon_sym_finally, + [115388] = 4, + ACTIONS(3101), 1, + anon_sym_RPAREN, + ACTIONS(3103), 1, anon_sym_COMMA, - ACTIONS(3970), 1, - anon_sym_COLON, - STATE(2205), 1, - aux_sym_match_statement_repeat1, + STATE(2451), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108302] = 4, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, + [115402] = 3, + ACTIONS(3663), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [108316] = 4, - ACTIONS(1208), 1, - anon_sym_RPAREN, - ACTIONS(3976), 1, + ACTIONS(3665), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115414] = 4, + ACTIONS(1314), 1, + anon_sym_RBRACE, + ACTIONS(4480), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108330] = 4, - ACTIONS(1270), 1, - anon_sym_RBRACK, - ACTIONS(3978), 1, - anon_sym_COMMA, - STATE(2144), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, + [115428] = 3, + ACTIONS(3675), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [108344] = 4, - ACTIONS(3710), 1, + ACTIONS(3677), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115440] = 4, + ACTIONS(632), 1, sym__newline, - ACTIONS(3712), 1, - sym__indent, - STATE(801), 1, - sym__match_block, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108358] = 4, - ACTIONS(1210), 1, - anon_sym_RPAREN, - ACTIONS(3980), 1, - anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4482), 1, + anon_sym_SEMI, + STATE(2378), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108372] = 4, - ACTIONS(3164), 1, + [115454] = 4, + ACTIONS(3340), 1, anon_sym_COMMA, - ACTIONS(3166), 1, + ACTIONS(3342), 1, anon_sym_RBRACE, - STATE(2201), 1, + STATE(2477), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108386] = 4, - ACTIONS(3117), 1, + [115468] = 3, + ACTIONS(3679), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3681), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115480] = 4, + ACTIONS(3371), 1, anon_sym_COMMA, - ACTIONS(3119), 1, + ACTIONS(3373), 1, anon_sym_RBRACE, - STATE(2101), 1, + STATE(2461), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108400] = 4, - ACTIONS(3036), 1, - anon_sym_COMMA, - ACTIONS(3038), 1, - anon_sym_RBRACK, - STATE(2182), 1, - aux_sym_subscript_repeat1, + [115494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108414] = 4, - ACTIONS(3121), 1, + ACTIONS(3944), 3, anon_sym_COMMA, - ACTIONS(3123), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2071), 1, - aux_sym_dictionary_repeat1, + [115504] = 4, + ACTIONS(4484), 1, + anon_sym_COMMA, + ACTIONS(4486), 1, + anon_sym_COLON, + STATE(2309), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108428] = 4, - ACTIONS(648), 1, + [115518] = 4, + ACTIONS(642), 1, sym__newline, - ACTIONS(3982), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - STATE(2096), 1, + STATE(2378), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108442] = 2, + [115532] = 4, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3091), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2460), 3, - sym__newline, + [115546] = 4, + ACTIONS(4490), 1, anon_sym_SEMI, - anon_sym_in, - [108452] = 4, - ACTIONS(3060), 1, - anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_RBRACK, - STATE(2029), 1, - aux_sym_subscript_repeat1, + ACTIONS(4492), 1, + sym__newline, + STATE(2463), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115560] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108466] = 4, - ACTIONS(3984), 1, + ACTIONS(3634), 3, anon_sym_RPAREN, - ACTIONS(3986), 1, anon_sym_COMMA, - STATE(2186), 1, - aux_sym_argument_list_repeat1, + anon_sym_as, + [115570] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108480] = 4, - ACTIONS(2872), 1, + ACTIONS(3634), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [115580] = 4, + ACTIONS(3585), 1, anon_sym_RPAREN, - ACTIONS(2874), 1, + ACTIONS(4494), 1, anon_sym_COMMA, - STATE(2189), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108494] = 4, - ACTIONS(1224), 1, - anon_sym_RPAREN, - ACTIONS(3988), 1, + [115594] = 4, + ACTIONS(4497), 1, + anon_sym_SEMI, + ACTIONS(4499), 1, + sym__newline, + STATE(2508), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115608] = 4, + ACTIONS(4501), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4503), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108508] = 4, - ACTIONS(1290), 1, + [115622] = 4, + ACTIONS(1306), 1, anon_sym_RBRACE, - ACTIONS(3990), 1, + ACTIONS(4505), 1, anon_sym_COMMA, - STATE(2128), 1, + STATE(2354), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108522] = 4, - ACTIONS(1298), 1, - anon_sym_RBRACE, - ACTIONS(3992), 1, + [115636] = 4, + ACTIONS(4507), 1, anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4509), 1, + anon_sym_RBRACK, + STATE(2422), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108536] = 4, - ACTIONS(652), 1, - sym__newline, - ACTIONS(3994), 1, - anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, + [115650] = 4, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3089), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108550] = 4, - ACTIONS(646), 1, - sym__newline, - ACTIONS(3996), 1, - anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, + [115664] = 4, + ACTIONS(1162), 1, + anon_sym_RPAREN, + ACTIONS(4511), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108564] = 4, - ACTIONS(3710), 1, + [115678] = 4, + ACTIONS(4309), 1, sym__newline, - ACTIONS(3712), 1, + ACTIONS(4311), 1, sym__indent, - STATE(744), 1, + STATE(724), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108578] = 4, - ACTIONS(3998), 1, + [115692] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_COLON, - STATE(2205), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4513), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108592] = 2, + [115706] = 4, + ACTIONS(3069), 1, + anon_sym_RPAREN, + ACTIONS(3071), 1, + anon_sym_COMMA, + STATE(2492), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1638), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [108602] = 4, - ACTIONS(2886), 1, + [115720] = 4, + ACTIONS(4515), 1, anon_sym_RPAREN, - ACTIONS(2888), 1, + ACTIONS(4517), 1, anon_sym_COMMA, - STATE(2216), 1, + STATE(2494), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108616] = 4, - ACTIONS(4003), 1, + [115734] = 4, + ACTIONS(1158), 1, anon_sym_RPAREN, - ACTIONS(4005), 1, + ACTIONS(4519), 1, anon_sym_COMMA, - STATE(2218), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108630] = 4, - ACTIONS(3142), 1, + [115748] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(3144), 1, - anon_sym_RBRACE, - STATE(2200), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4521), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108644] = 3, - ACTIONS(3368), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3370), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108656] = 4, - ACTIONS(3090), 1, + [115762] = 4, + ACTIONS(3305), 1, anon_sym_COMMA, - ACTIONS(3092), 1, + ACTIONS(3307), 1, anon_sym_RBRACK, - STATE(2221), 1, + STATE(2497), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108670] = 4, - ACTIONS(4007), 1, + [115776] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(4009), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + ACTIONS(4523), 1, + anon_sym_RPAREN, + STATE(2493), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108684] = 4, - ACTIONS(3283), 1, - anon_sym_RBRACE, - ACTIONS(4011), 1, + [115790] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - STATE(2213), 1, + ACTIONS(4525), 1, + anon_sym_RPAREN, + STATE(2493), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108698] = 4, - ACTIONS(4014), 1, - anon_sym_COMMA, - ACTIONS(4016), 1, + [115804] = 4, + ACTIONS(3942), 1, anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + ACTIONS(4527), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108712] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(2852), 1, + [115818] = 4, + ACTIONS(4530), 1, anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4532), 1, + anon_sym_COMMA, + STATE(2336), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108726] = 4, - ACTIONS(1232), 1, + [115832] = 4, + ACTIONS(1152), 1, anon_sym_RPAREN, - ACTIONS(4018), 1, + ACTIONS(4534), 1, anon_sym_COMMA, - STATE(2248), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108740] = 4, - ACTIONS(2769), 1, + [115846] = 4, + ACTIONS(1270), 1, anon_sym_RPAREN, - ACTIONS(4020), 1, + ACTIONS(4536), 1, anon_sym_COMMA, - STATE(2063), 1, - aux_sym__parameters_repeat1, + STATE(2295), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108754] = 4, - ACTIONS(1234), 1, + [115860] = 4, + ACTIONS(1164), 1, anon_sym_RPAREN, - ACTIONS(4022), 1, + ACTIONS(4538), 1, anon_sym_COMMA, - STATE(2248), 1, + STATE(2474), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108768] = 4, - ACTIONS(4024), 1, + [115874] = 4, + ACTIONS(3282), 1, anon_sym_COMMA, - ACTIONS(4027), 1, + ACTIONS(3284), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2476), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108782] = 4, - ACTIONS(4029), 1, + [115888] = 4, + ACTIONS(4540), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(4542), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108796] = 4, - ACTIONS(4033), 1, + [115902] = 4, + ACTIONS(4544), 1, anon_sym_COMMA, - ACTIONS(4035), 1, + ACTIONS(4546), 1, anon_sym_RBRACK, - STATE(2219), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108810] = 4, - ACTIONS(4037), 1, - anon_sym_SEMI, - ACTIONS(4039), 1, - sym__newline, - STATE(2202), 1, - aux_sym__simple_statements_repeat1, + [115916] = 4, + ACTIONS(4548), 1, + anon_sym_RPAREN, + ACTIONS(4550), 1, + anon_sym_COMMA, + STATE(2480), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108824] = 3, - ACTIONS(1671), 1, - anon_sym_except, + [115930] = 4, + ACTIONS(3024), 1, + anon_sym_RPAREN, + ACTIONS(3026), 1, + anon_sym_COMMA, + STATE(2485), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 2, - anon_sym_except_STAR, - anon_sym_finally, - [108836] = 4, - ACTIONS(3309), 1, + [115944] = 4, + ACTIONS(4062), 1, anon_sym_COMMA, - ACTIONS(4041), 1, - anon_sym_RBRACK, - STATE(2165), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4552), 1, + anon_sym_in, + STATE(2507), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108850] = 4, - ACTIONS(2816), 1, + [115958] = 4, + ACTIONS(4554), 1, anon_sym_COMMA, - ACTIONS(4043), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4556), 1, + anon_sym_COLON, + STATE(2309), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108864] = 4, - ACTIONS(3508), 1, - anon_sym_DOT, - ACTIONS(3514), 1, - anon_sym_PIPE, - ACTIONS(4045), 1, - anon_sym_COLON, + [115972] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108878] = 4, - ACTIONS(2677), 1, - anon_sym_RPAREN, - ACTIONS(4047), 1, + ACTIONS(3944), 3, anon_sym_COMMA, - STATE(2227), 1, - aux_sym__patterns_repeat1, + anon_sym_as, + anon_sym_RBRACK, + [115982] = 4, + ACTIONS(4107), 1, + sym__newline, + ACTIONS(4109), 1, + sym__indent, + STATE(753), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108892] = 4, - ACTIONS(1242), 1, - anon_sym_RPAREN, - ACTIONS(4050), 1, + [115996] = 4, + ACTIONS(1280), 1, + anon_sym_RBRACE, + ACTIONS(4558), 1, anon_sym_COMMA, - STATE(2153), 1, - aux_sym__collection_elements_repeat1, + STATE(2354), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108906] = 3, - ACTIONS(1699), 1, - anon_sym_except, + [116010] = 4, + ACTIONS(3516), 1, + anon_sym_COMMA, + ACTIONS(4560), 1, + anon_sym_RBRACK, + STATE(2441), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 2, - anon_sym_except_STAR, - anon_sym_finally, - [108918] = 2, + [116024] = 4, + ACTIONS(1955), 1, + anon_sym_RPAREN, + ACTIONS(4562), 1, + anon_sym_COMMA, + STATE(2339), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2320), 3, - sym__newline, - anon_sym_SEMI, + [116038] = 4, + ACTIONS(970), 1, anon_sym_in, - [108928] = 3, - ACTIONS(3395), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3397), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108940] = 4, - ACTIONS(4052), 1, + ACTIONS(4564), 1, anon_sym_COMMA, - ACTIONS(4054), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + STATE(2442), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108954] = 3, - ACTIONS(3417), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3419), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [108966] = 4, - ACTIONS(4056), 1, - anon_sym_SEMI, - ACTIONS(4058), 1, + [116052] = 4, + ACTIONS(620), 1, sym__newline, - STATE(2251), 1, + ACTIONS(4566), 1, + anon_sym_SEMI, + STATE(2378), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108980] = 4, - ACTIONS(4060), 1, - anon_sym_COMMA, - ACTIONS(4062), 1, - anon_sym_RBRACK, - STATE(2219), 1, - aux_sym_subscript_repeat1, + [116066] = 3, + ACTIONS(3924), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108994] = 2, + ACTIONS(3942), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116078] = 4, + ACTIONS(4568), 1, + anon_sym_SEMI, + ACTIONS(4570), 1, + sym__newline, + STATE(2511), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 3, + [116092] = 4, + ACTIONS(638), 1, sym__newline, + ACTIONS(4572), 1, anon_sym_SEMI, - anon_sym_COMMA, - [109004] = 4, - ACTIONS(2816), 1, - anon_sym_COMMA, - ACTIONS(4064), 1, - anon_sym_RPAREN, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + STATE(2378), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109018] = 4, - ACTIONS(1204), 1, - anon_sym_RPAREN, - ACTIONS(4066), 1, - anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + [116106] = 4, + ACTIONS(3801), 1, + anon_sym_DOT, + ACTIONS(3805), 1, + anon_sym_PIPE, + ACTIONS(4574), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109032] = 4, - ACTIONS(2814), 1, - anon_sym_RPAREN, - ACTIONS(2816), 1, + [116120] = 4, + ACTIONS(3455), 1, anon_sym_COMMA, - STATE(2228), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3457), 1, + anon_sym_RBRACE, + STATE(2504), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109046] = 4, - ACTIONS(1216), 1, - anon_sym_RPAREN, - ACTIONS(4068), 1, + [116134] = 4, + ACTIONS(3242), 1, + anon_sym_RBRACK, + ACTIONS(4576), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2514), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109060] = 4, - ACTIONS(2816), 1, + [116148] = 4, + ACTIONS(3056), 1, anon_sym_COMMA, - ACTIONS(4070), 1, + ACTIONS(3079), 1, anon_sym_RPAREN, - STATE(2228), 1, + STATE(2493), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109074] = 4, - ACTIONS(1422), 1, - anon_sym_RPAREN, - ACTIONS(4072), 1, - anon_sym_COMMA, - STATE(2084), 1, - aux_sym_with_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109088] = 4, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(4074), 1, - anon_sym_RBRACE, - STATE(2436), 1, - sym_format_specifier, + [116162] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109102] = 4, - ACTIONS(3078), 1, + ACTIONS(4579), 2, anon_sym_COMMA, - ACTIONS(3080), 1, anon_sym_RBRACK, - STATE(2232), 1, - aux_sym_subscript_repeat1, + [116171] = 3, + ACTIONS(4581), 1, + sym_integer, + ACTIONS(4583), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109116] = 4, - ACTIONS(3309), 1, - anon_sym_COMMA, - ACTIONS(4076), 1, - anon_sym_RBRACK, - STATE(2165), 1, - aux_sym_type_parameter_repeat1, + [116182] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109130] = 4, - ACTIONS(4078), 1, - anon_sym_RPAREN, - ACTIONS(4080), 1, - anon_sym_COMMA, - STATE(2238), 1, - aux_sym_argument_list_repeat1, + ACTIONS(1669), 2, + sym__dedent, + anon_sym_case, + [116191] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109144] = 4, - ACTIONS(3113), 1, - anon_sym_COMMA, - ACTIONS(3115), 1, - anon_sym_RBRACE, - STATE(2250), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4585), 2, + sym__newline, + anon_sym_SEMI, + [116200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109158] = 4, - ACTIONS(3279), 1, - anon_sym_RPAREN, - ACTIONS(4082), 1, - anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4587), 2, + sym__newline, + anon_sym_SEMI, + [116209] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109172] = 4, - ACTIONS(2848), 1, - anon_sym_RPAREN, - ACTIONS(2850), 1, - anon_sym_COMMA, - STATE(2240), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4589), 2, + sym__newline, + anon_sym_SEMI, + [116218] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109186] = 4, - ACTIONS(1314), 1, - anon_sym_RBRACE, - ACTIONS(4085), 1, - anon_sym_COMMA, - STATE(2128), 1, - aux_sym_dictionary_repeat1, + ACTIONS(4591), 2, + sym__newline, + anon_sym_SEMI, + [116227] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109200] = 4, - ACTIONS(640), 1, + ACTIONS(4593), 2, sym__newline, - ACTIONS(4087), 1, anon_sym_SEMI, - STATE(2096), 1, - aux_sym__simple_statements_repeat1, + [116236] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109214] = 4, - ACTIONS(3761), 1, - anon_sym_COLON, - ACTIONS(4089), 1, + ACTIONS(2887), 2, anon_sym_COMMA, - STATE(2252), 1, - aux_sym_with_clause_repeat1, + anon_sym_RBRACK, + [116245] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109228] = 3, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2270), 1, - sym_parameters, + ACTIONS(4595), 2, + sym__newline, + anon_sym_SEMI, + [116254] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109239] = 2, + ACTIONS(2912), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116263] = 3, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2576), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3645), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109248] = 2, + [116274] = 3, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2579), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4092), 2, - sym__newline, - anon_sym_SEMI, - [109257] = 2, + [116285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4094), 2, + ACTIONS(4597), 2, sym__newline, anon_sym_SEMI, - [109266] = 2, + [116294] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4096), 2, + ACTIONS(3073), 2, sym__newline, anon_sym_SEMI, - [109275] = 2, + [116303] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, + ACTIONS(1542), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109284] = 2, + [116312] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 2, + ACTIONS(3908), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109293] = 3, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2305), 1, - sym_parameters, + [116321] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109304] = 3, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2307), 1, - sym_parameters, + ACTIONS(4599), 2, + sym__dedent, + anon_sym_case, + [116330] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109315] = 2, + ACTIONS(4601), 2, + sym__dedent, + anon_sym_case, + [116339] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4098), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [109324] = 2, + ACTIONS(4603), 2, + sym__newline, + anon_sym_SEMI, + [116348] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4100), 2, + ACTIONS(4605), 2, sym__dedent, anon_sym_case, - [109333] = 2, + [116357] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2842), 2, - sym__newline, - anon_sym_SEMI, - [109342] = 2, + ACTIONS(4607), 2, + sym__dedent, + anon_sym_case, + [116366] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4102), 2, + ACTIONS(1665), 2, sym__dedent, anon_sym_case, - [109351] = 2, + [116375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4104), 2, + ACTIONS(4609), 2, sym__dedent, anon_sym_case, - [109360] = 2, + [116384] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4106), 2, - anon_sym_RPAREN, + ACTIONS(2914), 2, anon_sym_COMMA, - [109369] = 2, + anon_sym_RBRACK, + [116393] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4104), 2, + ACTIONS(4611), 2, sym__dedent, anon_sym_case, - [109378] = 2, + [116402] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1689), 2, + ACTIONS(4613), 2, sym__dedent, anon_sym_case, - [109387] = 3, - ACTIONS(4108), 1, - anon_sym_COLON, - ACTIONS(4110), 1, - anon_sym_DASH_GT, + [116411] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3585), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116420] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109398] = 2, + ACTIONS(1659), 2, + sym__dedent, + anon_sym_case, + [116429] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3226), 2, + ACTIONS(3136), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [109407] = 2, + [116438] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4112), 2, + ACTIONS(1695), 2, sym__dedent, anon_sym_case, - [109416] = 2, + [116447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4114), 2, - sym__dedent, - anon_sym_case, - [109425] = 2, + ACTIONS(4615), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116456] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3279), 2, - anon_sym_RPAREN, + ACTIONS(4579), 2, anon_sym_COMMA, - [109434] = 2, + anon_sym_RBRACE, + [116465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4116), 2, - sym__newline, - anon_sym_SEMI, - [109443] = 2, + ACTIONS(3499), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116474] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4118), 2, + ACTIONS(1713), 2, sym__dedent, anon_sym_case, - [109452] = 2, + [116483] = 3, + ACTIONS(4617), 1, + anon_sym_COLON, + ACTIONS(4619), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4120), 2, - sym__newline, - anon_sym_SEMI, - [109461] = 2, + [116494] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4118), 2, + ACTIONS(4621), 2, sym__dedent, anon_sym_case, - [109470] = 2, + [116503] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4122), 2, + ACTIONS(4623), 2, sym__dedent, anon_sym_case, - [109479] = 2, + [116512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4124), 2, + ACTIONS(4625), 2, sym__dedent, anon_sym_case, - [109488] = 3, - ACTIONS(4126), 1, + [116521] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3136), 2, anon_sym_COMMA, - STATE(1843), 1, - aux_sym__patterns_repeat1, + anon_sym_RBRACK, + [116530] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4627), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116539] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4615), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116548] = 3, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2590), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109499] = 2, + [116559] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4124), 2, + ACTIONS(4629), 2, sym__dedent, anon_sym_case, - [109508] = 2, + [116568] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 2, + ACTIONS(4579), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109517] = 2, + [116577] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4128), 2, - sym__dedent, - anon_sym_case, - [109526] = 2, + ACTIONS(3414), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116586] = 3, + ACTIONS(4631), 1, + anon_sym_COLON, + ACTIONS(4633), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4130), 2, - sym__dedent, - anon_sym_case, - [109535] = 2, + [116597] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4132), 2, - sym__dedent, - anon_sym_case, - [109544] = 2, + ACTIONS(3499), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116606] = 3, + ACTIONS(4635), 1, + anon_sym_COLON, + ACTIONS(4637), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4134), 2, - sym__dedent, - anon_sym_case, - [109553] = 2, + [116617] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4134), 2, - sym__dedent, - anon_sym_case, - [109562] = 2, + ACTIONS(3248), 2, + sym__newline, + anon_sym_SEMI, + [116626] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4136), 2, - sym__dedent, - anon_sym_case, - [109571] = 2, + ACTIONS(4639), 2, + anon_sym__, + sym_identifier, + [116635] = 3, + ACTIONS(4641), 1, + sym_integer, + ACTIONS(4643), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4138), 2, - sym__dedent, - anon_sym_case, - [109580] = 2, + [116646] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4140), 2, - sym__dedent, - anon_sym_case, - [109589] = 3, - ACTIONS(4142), 1, - anon_sym_COLON, - ACTIONS(4144), 1, - anon_sym_DASH_GT, + ACTIONS(4645), 2, + sym__newline, + anon_sym_SEMI, + [116655] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4647), 2, + sym__newline, + anon_sym_SEMI, + [116664] = 3, + ACTIONS(4649), 1, + sym_integer, + ACTIONS(4651), 1, + sym_float, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116675] = 3, + ACTIONS(3920), 1, + anon_sym_LPAREN, + STATE(2562), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109600] = 2, + [116686] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4146), 2, + ACTIONS(4099), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109609] = 2, + [116695] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1673), 2, - sym__dedent, - anon_sym_case, - [109618] = 2, + ACTIONS(2912), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116704] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4148), 2, - sym__dedent, - anon_sym_case, - [109627] = 3, - ACTIONS(3600), 1, - anon_sym_LPAREN, - STATE(2292), 1, - sym_parameters, + ACTIONS(4653), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116713] = 3, + ACTIONS(4655), 1, + sym_integer, + ACTIONS(4657), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109638] = 3, - ACTIONS(4150), 1, + [116724] = 3, + ACTIONS(4659), 1, anon_sym_COLON, - ACTIONS(4152), 1, + ACTIONS(4661), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109649] = 2, + [116735] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4663), 2, + anon_sym__, + sym_identifier, + [116744] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4154), 2, + ACTIONS(4665), 2, sym__dedent, anon_sym_case, - [109658] = 2, + [116753] = 3, + ACTIONS(4667), 1, + anon_sym_COLON, + ACTIONS(4669), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1556), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109667] = 2, + [116764] = 3, + ACTIONS(4671), 1, + sym_integer, + ACTIONS(4673), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109676] = 2, + [116775] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4675), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [116784] = 3, + ACTIONS(4677), 1, + anon_sym_COLON, + ACTIONS(4679), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + [116795] = 3, + ACTIONS(4681), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [109685] = 2, + STATE(1930), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116806] = 3, + ACTIONS(4683), 1, + anon_sym_COLON, + ACTIONS(4685), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3730), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109694] = 2, + [116817] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4156), 2, + ACTIONS(3323), 2, sym__newline, anon_sym_SEMI, - [109703] = 2, + [116826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1701), 2, - sym__dedent, - anon_sym_case, - [109712] = 3, - ACTIONS(4158), 1, + ACTIONS(4232), 2, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4160), 1, - anon_sym_DASH_GT, + [116835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109723] = 2, + ACTIONS(2887), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116844] = 3, + ACTIONS(4687), 1, + sym_integer, + ACTIONS(4689), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4162), 2, - sym__newline, - anon_sym_SEMI, - [109732] = 3, - ACTIONS(4164), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_DASH_GT, + [116855] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109743] = 2, + ACTIONS(4691), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [116864] = 3, + ACTIONS(4693), 1, + anon_sym_COLON, + ACTIONS(4695), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109752] = 2, + [116875] = 3, + ACTIONS(4697), 1, + sym_integer, + ACTIONS(4699), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4168), 2, - sym__newline, - anon_sym_SEMI, - [109761] = 3, - ACTIONS(4170), 1, - anon_sym_COLON, - ACTIONS(4172), 1, - anon_sym_DASH_GT, + [116886] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109772] = 2, + ACTIONS(4701), 2, + anon_sym__, + sym_identifier, + [116895] = 3, + ACTIONS(4703), 1, + sym_integer, + ACTIONS(4705), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109781] = 2, + [116906] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4174), 2, + ACTIONS(4707), 2, sym__newline, anon_sym_SEMI, - [109790] = 3, - ACTIONS(4176), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_DASH_GT, + [116915] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109801] = 2, + ACTIONS(4047), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116924] = 3, + ACTIONS(4709), 1, + sym_integer, + ACTIONS(4711), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1681), 2, - sym__dedent, - anon_sym_case, - [109810] = 2, + [116935] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 2, + ACTIONS(4713), 2, anon_sym_RPAREN, anon_sym_COMMA, - [109819] = 2, + [116944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3076), 2, + ACTIONS(4715), 2, sym__newline, anon_sym_SEMI, - [109828] = 2, + [116953] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, + ACTIONS(4279), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [109837] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1675), 2, - sym__dedent, - anon_sym_case, - [109846] = 2, + anon_sym_COLON, + [116962] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3792), 2, + ACTIONS(4717), 2, sym__newline, anon_sym_SEMI, - [109855] = 2, + [116971] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3097), 2, - sym__newline, - anon_sym_SEMI, - [109864] = 2, + ACTIONS(4615), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116980] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4180), 2, + ACTIONS(3499), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [109873] = 2, + anon_sym_RBRACK, + [116989] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2704), 2, + ACTIONS(4232), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [109882] = 2, + [116998] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4182), 2, + ACTIONS(4279), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [109891] = 2, + [117007] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4184), 2, + ACTIONS(4326), 2, sym__newline, anon_sym_SEMI, - [109900] = 2, + [117016] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4180), 2, + ACTIONS(4260), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [109909] = 2, + anon_sym_RBRACE, + [117025] = 3, + ACTIONS(4719), 1, + sym_integer, + ACTIONS(4721), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4182), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109918] = 2, + [117036] = 3, + ACTIONS(4723), 1, + sym_integer, + ACTIONS(4725), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4186), 2, - sym__newline, - anon_sym_SEMI, - [109927] = 2, + [117047] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4188), 2, - sym__newline, - anon_sym_SEMI, - [109936] = 2, + ACTIONS(4727), 2, + sym__dedent, + anon_sym_case, + [117056] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2943), 2, + ACTIONS(3136), 2, sym__newline, anon_sym_SEMI, - [109945] = 2, + [117065] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4182), 2, - anon_sym_RPAREN, + ACTIONS(3908), 2, anon_sym_COMMA, - [109954] = 2, + anon_sym_COLON, + [117074] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3755), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [109963] = 2, + ACTIONS(4729), 2, + anon_sym__, + sym_identifier, + [117083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, + ACTIONS(3908), 2, anon_sym_COMMA, anon_sym_COLON, - [109972] = 2, + [117092] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3639), 2, + ACTIONS(4713), 2, anon_sym_COMMA, anon_sym_COLON, - [109981] = 2, + [117101] = 3, + ACTIONS(4731), 1, + sym_integer, + ACTIONS(4733), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4190), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [109990] = 2, + [117112] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2698), 2, + ACTIONS(1542), 2, anon_sym_COMMA, anon_sym_RBRACK, - [109999] = 2, + [117121] = 2, + ACTIONS(4735), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3761), 2, - anon_sym_COMMA, + [117129] = 2, + ACTIONS(4737), 1, anon_sym_COLON, - [110008] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110017] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2677), 2, - anon_sym_COMMA, + [117137] = 2, + ACTIONS(4739), 1, anon_sym_RBRACK, - [110026] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [110035] = 2, + [117145] = 2, + ACTIONS(3081), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4146), 2, - anon_sym_COMMA, + [117153] = 2, + ACTIONS(3467), 1, anon_sym_COLON, - [110044] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4192), 2, - sym__newline, - anon_sym_SEMI, - [110053] = 2, + [117161] = 2, + ACTIONS(4741), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3730), 2, - anon_sym_COMMA, + [117169] = 2, + ACTIONS(4743), 1, anon_sym_COLON, - [110062] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3374), 2, - anon_sym_import, - anon_sym_DOT, - [110071] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3283), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110080] = 3, - ACTIONS(4194), 1, + [117177] = 2, + ACTIONS(4745), 1, anon_sym_COLON, - ACTIONS(4196), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110091] = 2, - ACTIONS(4198), 1, - anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110099] = 2, - ACTIONS(4200), 1, + [117185] = 2, + ACTIONS(4747), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110107] = 2, - ACTIONS(4202), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110115] = 2, - ACTIONS(4204), 1, + [117193] = 2, + ACTIONS(4749), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110123] = 2, - ACTIONS(4206), 1, - anon_sym_COLON_EQ, + [117201] = 2, + ACTIONS(4751), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110131] = 2, - ACTIONS(4208), 1, - anon_sym_COLON, + [117209] = 2, + ACTIONS(4753), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110139] = 2, - ACTIONS(4210), 1, - sym_identifier, + [117217] = 2, + ACTIONS(4405), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110147] = 2, - ACTIONS(4212), 1, - anon_sym_RPAREN, + [117225] = 2, + ACTIONS(4755), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110155] = 2, - ACTIONS(4214), 1, + [117233] = 2, + ACTIONS(3440), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110163] = 2, - ACTIONS(4216), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110171] = 2, - ACTIONS(4218), 1, - anon_sym_RBRACK, + [117241] = 2, + ACTIONS(4757), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110179] = 2, - ACTIONS(4220), 1, + [117249] = 2, + ACTIONS(4759), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110187] = 2, - ACTIONS(3193), 1, + [117257] = 2, + ACTIONS(4761), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110195] = 2, - ACTIONS(4222), 1, + [117265] = 2, + ACTIONS(4763), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110203] = 2, - ACTIONS(4224), 1, + [117273] = 2, + ACTIONS(4765), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110211] = 2, - ACTIONS(4226), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110219] = 2, - ACTIONS(4228), 1, - anon_sym_in, + [117281] = 2, + ACTIONS(4767), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110227] = 2, - ACTIONS(4230), 1, + [117289] = 2, + ACTIONS(4769), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110235] = 2, - ACTIONS(4232), 1, + [117297] = 2, + ACTIONS(4771), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110243] = 2, - ACTIONS(4234), 1, + [117305] = 2, + ACTIONS(4773), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110251] = 2, - ACTIONS(4236), 1, + [117313] = 2, + ACTIONS(4775), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110259] = 2, - ACTIONS(4238), 1, - anon_sym_RBRACK, + [117321] = 2, + ACTIONS(4777), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110267] = 2, - ACTIONS(4240), 1, + [117329] = 2, + ACTIONS(4779), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110275] = 2, - ACTIONS(4242), 1, + [117337] = 2, + ACTIONS(4781), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110283] = 2, - ACTIONS(4244), 1, - anon_sym_RPAREN, + [117345] = 2, + ACTIONS(4783), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110291] = 2, - ACTIONS(4246), 1, - sym_identifier, + [117353] = 2, + ACTIONS(4785), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110299] = 2, - ACTIONS(2830), 1, + [117361] = 2, + ACTIONS(3093), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110307] = 2, - ACTIONS(3905), 1, - anon_sym_in, + [117369] = 2, + ACTIONS(4787), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110315] = 2, - ACTIONS(4248), 1, - sym_identifier, + [117377] = 2, + ACTIONS(4789), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110323] = 2, - ACTIONS(4250), 1, - anon_sym_RPAREN, + [117385] = 2, + ACTIONS(4791), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110331] = 2, - ACTIONS(2890), 1, + [117393] = 2, + ACTIONS(3058), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110339] = 2, - ACTIONS(4252), 1, - anon_sym_COLON, + [117401] = 2, + ACTIONS(4793), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110347] = 2, - ACTIONS(4254), 1, + [117409] = 2, + ACTIONS(3444), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110355] = 2, - ACTIONS(4256), 1, - anon_sym_RBRACE, + [117417] = 2, + ACTIONS(4795), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110363] = 2, - ACTIONS(4258), 1, + [117425] = 2, + ACTIONS(4797), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110371] = 2, - ACTIONS(4260), 1, - sym_identifier, + [117433] = 2, + ACTIONS(4799), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110379] = 2, - ACTIONS(4262), 1, - anon_sym_RPAREN, + [117441] = 2, + ACTIONS(4801), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110387] = 2, - ACTIONS(4264), 1, + [117449] = 2, + ACTIONS(4803), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110395] = 2, - ACTIONS(4266), 1, - anon_sym_in, + [117457] = 2, + ACTIONS(4805), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110403] = 2, - ACTIONS(4268), 1, + [117465] = 2, + ACTIONS(4807), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110411] = 2, - ACTIONS(4270), 1, + [117473] = 2, + ACTIONS(4809), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110419] = 2, - ACTIONS(4272), 1, - anon_sym_RBRACK, + [117481] = 2, + ACTIONS(4811), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110427] = 2, - ACTIONS(4274), 1, - anon_sym_RBRACE, + [117489] = 2, + ACTIONS(4813), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110435] = 2, - ACTIONS(4276), 1, - anon_sym_RBRACK, + [117497] = 2, + ACTIONS(4815), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110443] = 2, - ACTIONS(3218), 1, - anon_sym_RBRACE, + [117505] = 2, + ACTIONS(4817), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110451] = 2, - ACTIONS(4278), 1, - anon_sym_COLON, + [117513] = 2, + ACTIONS(4819), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110459] = 2, - ACTIONS(4280), 1, - anon_sym_COLON, + [117521] = 2, + ACTIONS(4821), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110467] = 2, - ACTIONS(4282), 1, - anon_sym_COLON, + [117529] = 2, + ACTIONS(4823), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110475] = 2, - ACTIONS(4284), 1, - anon_sym_COLON, + [117537] = 2, + ACTIONS(4825), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110483] = 2, - ACTIONS(4286), 1, + [117545] = 2, + ACTIONS(4827), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110491] = 2, - ACTIONS(4288), 1, + [117553] = 2, + ACTIONS(4829), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110499] = 2, - ACTIONS(4290), 1, + [117561] = 2, + ACTIONS(4831), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117569] = 2, + ACTIONS(4833), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117577] = 2, + ACTIONS(4835), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110507] = 2, - ACTIONS(4292), 1, + [117585] = 2, + ACTIONS(3386), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110515] = 2, - ACTIONS(4294), 1, + [117593] = 2, + ACTIONS(4837), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110523] = 2, - ACTIONS(4296), 1, - sym_identifier, + [117601] = 2, + ACTIONS(4839), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110531] = 2, - ACTIONS(3831), 1, - anon_sym_in, + [117609] = 2, + ACTIONS(4841), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110539] = 2, - ACTIONS(3966), 1, - anon_sym_in, + [117617] = 2, + ACTIONS(4843), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110547] = 2, - ACTIONS(4298), 1, + [117625] = 2, + ACTIONS(4845), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110555] = 2, - ACTIONS(4300), 1, - anon_sym_RPAREN, + [117633] = 2, + ACTIONS(4847), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110563] = 2, - ACTIONS(4302), 1, + [117641] = 2, + ACTIONS(4849), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110571] = 2, - ACTIONS(4304), 1, + [117649] = 2, + ACTIONS(4851), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110579] = 2, - ACTIONS(4306), 1, + [117657] = 2, + ACTIONS(4853), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110587] = 2, - ACTIONS(4308), 1, + [117665] = 2, + ACTIONS(4855), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110595] = 2, - ACTIONS(4310), 1, - anon_sym_RPAREN, + [117673] = 2, + ACTIONS(4857), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110603] = 2, - ACTIONS(4312), 1, - anon_sym_RBRACK, + [117681] = 2, + ACTIONS(4255), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110611] = 2, - ACTIONS(4314), 1, + [117689] = 2, + ACTIONS(4859), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110619] = 2, - ACTIONS(4316), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110627] = 2, - ACTIONS(4318), 1, - anon_sym_COLON, + [117697] = 2, + ACTIONS(4861), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110635] = 2, - ACTIONS(3166), 1, + [117705] = 2, + ACTIONS(4863), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110643] = 2, - ACTIONS(3119), 1, - anon_sym_RBRACE, + [117713] = 2, + ACTIONS(4865), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110651] = 2, - ACTIONS(4320), 1, + [117721] = 2, + ACTIONS(4867), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110659] = 2, - ACTIONS(4322), 1, - anon_sym_RBRACE, + [117729] = 2, + ACTIONS(4869), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110667] = 2, - ACTIONS(4324), 1, - anon_sym_RBRACE, + [117737] = 2, + ACTIONS(4871), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110675] = 2, - ACTIONS(2834), 1, + [117745] = 2, + ACTIONS(3101), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110683] = 2, - ACTIONS(4326), 1, + [117753] = 2, + ACTIONS(4873), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110691] = 2, - ACTIONS(4328), 1, + [117761] = 2, + ACTIONS(4875), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110699] = 2, - ACTIONS(4330), 1, - sym_identifier, + [117769] = 2, + ACTIONS(1446), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110707] = 2, - ACTIONS(4332), 1, - anon_sym_in, + [117777] = 2, + ACTIONS(4877), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110715] = 2, - ACTIONS(4334), 1, - anon_sym_RPAREN, + [117785] = 2, + ACTIONS(4879), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110723] = 2, - ACTIONS(4336), 1, - anon_sym_in, + [117793] = 2, + ACTIONS(4881), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110731] = 2, - ACTIONS(2872), 1, - anon_sym_RPAREN, + [117801] = 2, + ACTIONS(4883), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110739] = 2, - ACTIONS(4338), 1, - anon_sym_RBRACK, + [117809] = 2, + ACTIONS(4885), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110747] = 2, - ACTIONS(4340), 1, + [117817] = 2, + ACTIONS(4887), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110755] = 2, - ACTIONS(4342), 1, + [117825] = 2, + ACTIONS(3342), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110763] = 2, - ACTIONS(4344), 1, - anon_sym_RBRACE, + [117833] = 2, + ACTIONS(4889), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110771] = 2, - ACTIONS(4346), 1, - anon_sym_RBRACE, + [117841] = 2, + ACTIONS(4891), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110779] = 2, - ACTIONS(4348), 1, - anon_sym_RBRACE, + [117849] = 2, + ACTIONS(3097), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110787] = 2, - ACTIONS(4350), 1, + [117857] = 2, + ACTIONS(4893), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110795] = 2, - ACTIONS(4352), 1, - anon_sym_RBRACK, + [117865] = 2, + ACTIONS(1420), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110803] = 2, - ACTIONS(3780), 1, + [117873] = 2, + ACTIONS(4208), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110811] = 2, - ACTIONS(4354), 1, - anon_sym_RBRACE, + [117881] = 2, + ACTIONS(4895), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110819] = 2, - ACTIONS(3179), 1, + [117889] = 2, + ACTIONS(3388), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110827] = 2, - ACTIONS(4356), 1, - anon_sym_RBRACK, + [117897] = 2, + ACTIONS(4897), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110835] = 2, - ACTIONS(4358), 1, - anon_sym_RPAREN, + [117905] = 2, + ACTIONS(4899), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110843] = 2, - ACTIONS(4360), 1, + [117913] = 2, + ACTIONS(4901), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110851] = 2, - ACTIONS(4362), 1, - anon_sym_in, + [117921] = 2, + ACTIONS(4903), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110859] = 2, - ACTIONS(4364), 1, + [117929] = 2, + ACTIONS(4905), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110867] = 2, - ACTIONS(4366), 1, - anon_sym_RBRACE, + [117937] = 2, + ACTIONS(4907), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110875] = 2, - ACTIONS(3768), 1, + [117945] = 2, + ACTIONS(4200), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110883] = 2, - ACTIONS(4368), 1, + [117953] = 2, + ACTIONS(4909), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110891] = 2, - ACTIONS(3177), 1, + [117961] = 2, + ACTIONS(3377), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110899] = 2, - ACTIONS(3201), 1, + [117969] = 2, + ACTIONS(4911), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110907] = 2, - ACTIONS(4370), 1, - sym_identifier, + [117977] = 2, + ACTIONS(4913), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110915] = 2, - ACTIONS(4372), 1, - anon_sym_RBRACE, + [117985] = 2, + ACTIONS(4915), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110923] = 2, - ACTIONS(4374), 1, - anon_sym_RBRACE, + [117993] = 2, + ACTIONS(4917), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110931] = 2, - ACTIONS(4376), 1, - anon_sym_RBRACE, + [118001] = 2, + ACTIONS(3418), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110939] = 2, - ACTIONS(2886), 1, - anon_sym_RPAREN, + [118009] = 2, + ACTIONS(3373), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110947] = 2, - ACTIONS(2838), 1, - anon_sym_RPAREN, + [118017] = 2, + ACTIONS(4919), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110955] = 2, - ACTIONS(4378), 1, - anon_sym_RBRACE, + [118025] = 2, + ACTIONS(4921), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110963] = 2, - ACTIONS(4380), 1, - anon_sym_RBRACE, + [118033] = 2, + ACTIONS(4923), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110971] = 2, - ACTIONS(4382), 1, + [118041] = 2, + ACTIONS(4925), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110979] = 2, - ACTIONS(4384), 1, - anon_sym_RBRACE, + [118049] = 2, + ACTIONS(4927), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110987] = 2, - ACTIONS(4386), 1, - anon_sym_RBRACK, + [118057] = 2, + ACTIONS(4929), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110995] = 2, - ACTIONS(3144), 1, - anon_sym_RBRACE, + [118065] = 2, + ACTIONS(4931), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111003] = 2, - ACTIONS(4388), 1, - anon_sym_COLON, + [118073] = 2, + ACTIONS(4933), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111011] = 2, - ACTIONS(4390), 1, - sym_identifier, + [118081] = 2, + ACTIONS(4935), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111019] = 2, - ACTIONS(4392), 1, - anon_sym_COLON, + [118089] = 2, + ACTIONS(4132), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111027] = 2, - ACTIONS(4394), 1, - anon_sym_COLON, + [118097] = 2, + ACTIONS(4937), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111035] = 2, - ACTIONS(4396), 1, - anon_sym_RBRACK, + [118105] = 2, + ACTIONS(4939), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111043] = 2, - ACTIONS(4398), 1, - anon_sym_RPAREN, + [118113] = 2, + ACTIONS(4941), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111051] = 2, - ACTIONS(4400), 1, - anon_sym_RPAREN, + [118121] = 2, + ACTIONS(4943), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111059] = 2, - ACTIONS(4402), 1, - sym_identifier, + [118129] = 2, + ACTIONS(4945), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111067] = 2, - ACTIONS(4404), 1, - anon_sym_in, + [118137] = 2, + ACTIONS(3085), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111075] = 2, - ACTIONS(3722), 1, + [118145] = 2, + ACTIONS(4105), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111083] = 2, - ACTIONS(2876), 1, - anon_sym_RPAREN, + [118153] = 2, + ACTIONS(4947), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111091] = 2, - ACTIONS(3720), 1, + [118161] = 2, + ACTIONS(4103), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111099] = 2, - ACTIONS(4406), 1, - sym_identifier, + [118169] = 2, + ACTIONS(4949), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111107] = 2, - ACTIONS(4408), 1, + [118177] = 2, + ACTIONS(4951), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111115] = 2, - ACTIONS(4410), 1, - anon_sym_RBRACK, + [118185] = 2, + ACTIONS(4953), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111123] = 2, - ACTIONS(4412), 1, + [118193] = 2, + ACTIONS(4955), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111131] = 2, - ACTIONS(3148), 1, - anon_sym_COLON, + [118201] = 2, + ACTIONS(4957), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111139] = 2, - ACTIONS(4414), 1, - sym_identifier, + [118209] = 2, + ACTIONS(4959), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111147] = 2, - ACTIONS(4416), 1, - anon_sym_RPAREN, + [118217] = 2, + ACTIONS(4961), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111155] = 2, - ACTIONS(4418), 1, - anon_sym_RBRACE, + [118225] = 2, + ACTIONS(4963), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111163] = 2, - ACTIONS(4420), 1, - anon_sym_RBRACE, + [118233] = 2, + ACTIONS(4965), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111171] = 2, - ACTIONS(4422), 1, - anon_sym_COLON_EQ, + [118241] = 2, + ACTIONS(4967), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111179] = 2, - ACTIONS(4424), 1, + [118249] = 2, + ACTIONS(3069), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111187] = 2, - ACTIONS(3111), 1, - anon_sym_RBRACE, + [118257] = 2, + ACTIONS(4969), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111195] = 2, - ACTIONS(4426), 1, - anon_sym_COLON, + [118265] = 2, + ACTIONS(4971), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111203] = 2, - ACTIONS(4428), 1, - sym_identifier, + [118273] = 2, + ACTIONS(4973), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111211] = 2, - ACTIONS(4430), 1, - anon_sym_for, + [118281] = 2, + ACTIONS(4975), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111219] = 2, - ACTIONS(4432), 1, + [118289] = 2, + ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111227] = 2, - ACTIONS(4434), 1, - anon_sym_COLON, + [118297] = 2, + ACTIONS(4979), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111235] = 2, - ACTIONS(4436), 1, - anon_sym_import, + [118305] = 2, + ACTIONS(4981), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111243] = 2, - ACTIONS(4438), 1, - anon_sym_RBRACE, + [118313] = 2, + ACTIONS(4983), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111251] = 2, - ACTIONS(4440), 1, - anon_sym_RBRACE, + [118321] = 2, + ACTIONS(4985), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111259] = 2, - ACTIONS(1472), 1, - anon_sym_def, + [118329] = 2, + ACTIONS(4987), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111267] = 2, - ACTIONS(4442), 1, - anon_sym_RBRACK, + [118337] = 2, + ACTIONS(4989), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111275] = 2, - ACTIONS(4444), 1, - anon_sym_import, + [118345] = 2, + ACTIONS(4991), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111283] = 2, - ACTIONS(4446), 1, - anon_sym_COLON, + [118353] = 2, + ACTIONS(4993), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111291] = 2, - ACTIONS(4448), 1, - anon_sym_COLON, + [118361] = 2, + ACTIONS(4552), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111299] = 2, - ACTIONS(4450), 1, - anon_sym_RBRACE, + [118369] = 2, + ACTIONS(4995), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111307] = 2, - ACTIONS(4452), 1, - sym_identifier, + [118377] = 2, + ACTIONS(4997), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111315] = 2, - ACTIONS(4454), 1, - anon_sym_RBRACK, + [118385] = 2, + ACTIONS(3024), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111323] = 2, - ACTIONS(3123), 1, - anon_sym_RBRACE, + [118393] = 2, + ACTIONS(4999), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111331] = 2, - ACTIONS(4456), 1, - anon_sym_COLON_EQ, + [118401] = 2, + ACTIONS(5001), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111339] = 2, - ACTIONS(1430), 1, - anon_sym_COLON, + [118409] = 2, + ACTIONS(5003), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111347] = 2, - ACTIONS(4458), 1, - sym_identifier, + [118417] = 2, + ACTIONS(5005), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111355] = 2, - ACTIONS(4460), 1, - anon_sym_RPAREN, + [118425] = 2, + ACTIONS(5007), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111363] = 2, - ACTIONS(4462), 1, - anon_sym_RBRACK, + [118433] = 2, + ACTIONS(5009), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111371] = 2, - ACTIONS(4464), 1, - anon_sym_COLON, + [118441] = 2, + ACTIONS(5011), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111379] = 2, - ACTIONS(4466), 1, + [118449] = 2, + ACTIONS(5013), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111387] = 2, - ACTIONS(4468), 1, - anon_sym_RPAREN, + [118457] = 2, + ACTIONS(5015), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111395] = 2, - ACTIONS(4470), 1, + [118465] = 2, + ACTIONS(5017), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111403] = 2, - ACTIONS(3115), 1, + [118473] = 2, + ACTIONS(3358), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111411] = 2, - ACTIONS(4472), 1, - sym_identifier, + [118481] = 2, + ACTIONS(5019), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111419] = 2, - ACTIONS(4474), 1, - anon_sym_RBRACE, + [118489] = 2, + ACTIONS(5021), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111427] = 2, - ACTIONS(4476), 1, - anon_sym_COLON, + [118497] = 2, + ACTIONS(5023), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111435] = 2, - ACTIONS(4478), 1, - anon_sym_RPAREN, + [118505] = 2, + ACTIONS(5025), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111443] = 2, - ACTIONS(2848), 1, - anon_sym_RPAREN, + [118513] = 2, + ACTIONS(5027), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111451] = 2, - ACTIONS(3687), 1, - anon_sym_in, + [118521] = 2, + ACTIONS(5029), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111459] = 2, - ACTIONS(4480), 1, - anon_sym_COLON_EQ, + [118529] = 2, + ACTIONS(5031), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111467] = 2, - ACTIONS(4482), 1, + [118537] = 2, + ACTIONS(5033), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111475] = 2, - ACTIONS(4484), 1, - anon_sym_RPAREN, + [118545] = 2, + ACTIONS(5035), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111483] = 2, - ACTIONS(4486), 1, - anon_sym_COLON_EQ, + [118553] = 2, + ACTIONS(5037), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111491] = 2, - ACTIONS(4488), 1, - ts_builtin_sym_end, + [118561] = 2, + ACTIONS(5039), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111499] = 2, - ACTIONS(4490), 1, - anon_sym_RBRACE, + [118569] = 2, + ACTIONS(5041), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111507] = 2, - ACTIONS(4492), 1, - anon_sym_RBRACE, + [118577] = 2, + ACTIONS(5043), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111515] = 2, - ACTIONS(4494), 1, + [118585] = 2, + ACTIONS(5045), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111523] = 2, - ACTIONS(4496), 1, + [118593] = 2, + ACTIONS(5047), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111531] = 2, - ACTIONS(4498), 1, + [118601] = 2, + ACTIONS(5049), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111539] = 2, - ACTIONS(4500), 1, + [118609] = 2, + ACTIONS(5051), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111547] = 2, - ACTIONS(4502), 1, + [118617] = 2, + ACTIONS(5053), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111555] = 2, - ACTIONS(4504), 1, - anon_sym_import, + [118625] = 2, + ACTIONS(5055), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111563] = 2, - ACTIONS(4506), 1, - sym_identifier, + [118633] = 2, + ACTIONS(3471), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111571] = 2, - ACTIONS(4508), 1, - anon_sym_RBRACK, + [118641] = 2, + ACTIONS(5057), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111579] = 2, - ACTIONS(4510), 1, + [118649] = 2, + ACTIONS(5059), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111587] = 2, - ACTIONS(4512), 1, + [118657] = 2, + ACTIONS(5061), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111595] = 2, - ACTIONS(4514), 1, - anon_sym_COLON_EQ, + [118665] = 2, + ACTIONS(3457), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111603] = 2, - ACTIONS(3673), 1, + [118673] = 2, + ACTIONS(4066), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111611] = 2, + [118681] = 2, ACTIONS(1454), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111619] = 2, - ACTIONS(4516), 1, + [118689] = 2, + ACTIONS(5063), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111627] = 2, - ACTIONS(4518), 1, + [118697] = 2, + ACTIONS(5065), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111635] = 2, - ACTIONS(3671), 1, + [118705] = 2, + ACTIONS(4064), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111643] = 2, - ACTIONS(4520), 1, + [118713] = 2, + ACTIONS(5067), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111651] = 2, - ACTIONS(4522), 1, - anon_sym_RPAREN, + [118721] = 2, + ACTIONS(5069), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111659] = 2, - ACTIONS(4524), 1, + [118729] = 2, + ACTIONS(5071), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, @@ -122257,2356 +127726,2636 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(193)] = 0, - [SMALL_STATE(194)] = 124, - [SMALL_STATE(195)] = 248, - [SMALL_STATE(196)] = 374, - [SMALL_STATE(197)] = 500, - [SMALL_STATE(198)] = 628, - [SMALL_STATE(199)] = 752, - [SMALL_STATE(200)] = 876, - [SMALL_STATE(201)] = 1000, - [SMALL_STATE(202)] = 1124, - [SMALL_STATE(203)] = 1248, - [SMALL_STATE(204)] = 1372, - [SMALL_STATE(205)] = 1498, - [SMALL_STATE(206)] = 1624, - [SMALL_STATE(207)] = 1750, - [SMALL_STATE(208)] = 1870, - [SMALL_STATE(209)] = 1994, - [SMALL_STATE(210)] = 2118, - [SMALL_STATE(211)] = 2242, - [SMALL_STATE(212)] = 2366, - [SMALL_STATE(213)] = 2490, - [SMALL_STATE(214)] = 2614, - [SMALL_STATE(215)] = 2738, - [SMALL_STATE(216)] = 2862, - [SMALL_STATE(217)] = 2986, - [SMALL_STATE(218)] = 3112, - [SMALL_STATE(219)] = 3236, - [SMALL_STATE(220)] = 3362, - [SMALL_STATE(221)] = 3488, - [SMALL_STATE(222)] = 3608, - [SMALL_STATE(223)] = 3728, - [SMALL_STATE(224)] = 3856, - [SMALL_STATE(225)] = 3982, - [SMALL_STATE(226)] = 4106, - [SMALL_STATE(227)] = 4213, - [SMALL_STATE(228)] = 4320, - [SMALL_STATE(229)] = 4436, - [SMALL_STATE(230)] = 4552, - [SMALL_STATE(231)] = 4663, - [SMALL_STATE(232)] = 4774, - [SMALL_STATE(233)] = 4885, - [SMALL_STATE(234)] = 4996, - [SMALL_STATE(235)] = 5107, - [SMALL_STATE(236)] = 5218, - [SMALL_STATE(237)] = 5329, - [SMALL_STATE(238)] = 5444, - [SMALL_STATE(239)] = 5555, - [SMALL_STATE(240)] = 5666, - [SMALL_STATE(241)] = 5771, - [SMALL_STATE(242)] = 5882, - [SMALL_STATE(243)] = 5987, - [SMALL_STATE(244)] = 6098, - [SMALL_STATE(245)] = 6213, - [SMALL_STATE(246)] = 6328, - [SMALL_STATE(247)] = 6439, - [SMALL_STATE(248)] = 6554, - [SMALL_STATE(249)] = 6669, - [SMALL_STATE(250)] = 6780, - [SMALL_STATE(251)] = 6891, - [SMALL_STATE(252)] = 7008, - [SMALL_STATE(253)] = 7119, - [SMALL_STATE(254)] = 7230, - [SMALL_STATE(255)] = 7345, - [SMALL_STATE(256)] = 7456, - [SMALL_STATE(257)] = 7571, - [SMALL_STATE(258)] = 7682, - [SMALL_STATE(259)] = 7793, - [SMALL_STATE(260)] = 7904, - [SMALL_STATE(261)] = 8019, - [SMALL_STATE(262)] = 8130, - [SMALL_STATE(263)] = 8241, - [SMALL_STATE(264)] = 8352, - [SMALL_STATE(265)] = 8463, - [SMALL_STATE(266)] = 8578, - [SMALL_STATE(267)] = 8689, - [SMALL_STATE(268)] = 8800, - [SMALL_STATE(269)] = 8912, - [SMALL_STATE(270)] = 9024, - [SMALL_STATE(271)] = 9138, - [SMALL_STATE(272)] = 9250, - [SMALL_STATE(273)] = 9362, - [SMALL_STATE(274)] = 9474, - [SMALL_STATE(275)] = 9586, - [SMALL_STATE(276)] = 9698, - [SMALL_STATE(277)] = 9810, - [SMALL_STATE(278)] = 9922, - [SMALL_STATE(279)] = 10034, - [SMALL_STATE(280)] = 10146, - [SMALL_STATE(281)] = 10260, - [SMALL_STATE(282)] = 10376, - [SMALL_STATE(283)] = 10488, - [SMALL_STATE(284)] = 10602, - [SMALL_STATE(285)] = 10716, - [SMALL_STATE(286)] = 10828, - [SMALL_STATE(287)] = 10940, - [SMALL_STATE(288)] = 11052, - [SMALL_STATE(289)] = 11164, - [SMALL_STATE(290)] = 11276, - [SMALL_STATE(291)] = 11390, - [SMALL_STATE(292)] = 11502, - [SMALL_STATE(293)] = 11618, - [SMALL_STATE(294)] = 11730, - [SMALL_STATE(295)] = 11842, - [SMALL_STATE(296)] = 11954, - [SMALL_STATE(297)] = 12066, - [SMALL_STATE(298)] = 12178, - [SMALL_STATE(299)] = 12290, - [SMALL_STATE(300)] = 12404, - [SMALL_STATE(301)] = 12516, - [SMALL_STATE(302)] = 12628, - [SMALL_STATE(303)] = 12740, - [SMALL_STATE(304)] = 12852, - [SMALL_STATE(305)] = 12968, - [SMALL_STATE(306)] = 13082, - [SMALL_STATE(307)] = 13194, - [SMALL_STATE(308)] = 13306, - [SMALL_STATE(309)] = 13422, - [SMALL_STATE(310)] = 13534, - [SMALL_STATE(311)] = 13650, - [SMALL_STATE(312)] = 13762, - [SMALL_STATE(313)] = 13874, - [SMALL_STATE(314)] = 13986, - [SMALL_STATE(315)] = 14098, - [SMALL_STATE(316)] = 14210, - [SMALL_STATE(317)] = 14324, - [SMALL_STATE(318)] = 14436, - [SMALL_STATE(319)] = 14548, - [SMALL_STATE(320)] = 14664, - [SMALL_STATE(321)] = 14776, - [SMALL_STATE(322)] = 14888, - [SMALL_STATE(323)] = 14985, - [SMALL_STATE(324)] = 15094, - [SMALL_STATE(325)] = 15203, - [SMALL_STATE(326)] = 15312, - [SMALL_STATE(327)] = 15421, - [SMALL_STATE(328)] = 15530, - [SMALL_STATE(329)] = 15639, - [SMALL_STATE(330)] = 15744, - [SMALL_STATE(331)] = 15853, - [SMALL_STATE(332)] = 15962, - [SMALL_STATE(333)] = 16067, - [SMALL_STATE(334)] = 16176, - [SMALL_STATE(335)] = 16285, - [SMALL_STATE(336)] = 16394, - [SMALL_STATE(337)] = 16503, - [SMALL_STATE(338)] = 16612, - [SMALL_STATE(339)] = 16721, - [SMALL_STATE(340)] = 16830, - [SMALL_STATE(341)] = 16939, - [SMALL_STATE(342)] = 17048, - [SMALL_STATE(343)] = 17157, - [SMALL_STATE(344)] = 17266, - [SMALL_STATE(345)] = 17374, - [SMALL_STATE(346)] = 17480, - [SMALL_STATE(347)] = 17588, - [SMALL_STATE(348)] = 17696, - [SMALL_STATE(349)] = 17804, - [SMALL_STATE(350)] = 17912, - [SMALL_STATE(351)] = 18020, - [SMALL_STATE(352)] = 18128, - [SMALL_STATE(353)] = 18234, - [SMALL_STATE(354)] = 18342, - [SMALL_STATE(355)] = 18450, - [SMALL_STATE(356)] = 18558, - [SMALL_STATE(357)] = 18666, - [SMALL_STATE(358)] = 18772, - [SMALL_STATE(359)] = 18880, - [SMALL_STATE(360)] = 18988, - [SMALL_STATE(361)] = 19096, - [SMALL_STATE(362)] = 19204, - [SMALL_STATE(363)] = 19312, - [SMALL_STATE(364)] = 19420, - [SMALL_STATE(365)] = 19528, - [SMALL_STATE(366)] = 19636, - [SMALL_STATE(367)] = 19744, - [SMALL_STATE(368)] = 19851, - [SMALL_STATE(369)] = 19958, - [SMALL_STATE(370)] = 20065, - [SMALL_STATE(371)] = 20172, - [SMALL_STATE(372)] = 20279, - [SMALL_STATE(373)] = 20386, - [SMALL_STATE(374)] = 20493, - [SMALL_STATE(375)] = 20588, - [SMALL_STATE(376)] = 20695, - [SMALL_STATE(377)] = 20802, - [SMALL_STATE(378)] = 20909, - [SMALL_STATE(379)] = 21016, - [SMALL_STATE(380)] = 21121, - [SMALL_STATE(381)] = 21216, - [SMALL_STATE(382)] = 21323, - [SMALL_STATE(383)] = 21428, - [SMALL_STATE(384)] = 21535, - [SMALL_STATE(385)] = 21642, - [SMALL_STATE(386)] = 21749, - [SMALL_STATE(387)] = 21856, - [SMALL_STATE(388)] = 21961, - [SMALL_STATE(389)] = 22068, - [SMALL_STATE(390)] = 22175, - [SMALL_STATE(391)] = 22282, - [SMALL_STATE(392)] = 22389, - [SMALL_STATE(393)] = 22496, - [SMALL_STATE(394)] = 22601, - [SMALL_STATE(395)] = 22708, - [SMALL_STATE(396)] = 22815, - [SMALL_STATE(397)] = 22922, - [SMALL_STATE(398)] = 23029, - [SMALL_STATE(399)] = 23136, - [SMALL_STATE(400)] = 23243, - [SMALL_STATE(401)] = 23348, - [SMALL_STATE(402)] = 23455, - [SMALL_STATE(403)] = 23562, - [SMALL_STATE(404)] = 23667, - [SMALL_STATE(405)] = 23774, - [SMALL_STATE(406)] = 23881, - [SMALL_STATE(407)] = 23988, - [SMALL_STATE(408)] = 24090, - [SMALL_STATE(409)] = 24184, - [SMALL_STATE(410)] = 24288, - [SMALL_STATE(411)] = 24392, - [SMALL_STATE(412)] = 24494, - [SMALL_STATE(413)] = 24598, - [SMALL_STATE(414)] = 24700, - [SMALL_STATE(415)] = 24804, - [SMALL_STATE(416)] = 24908, - [SMALL_STATE(417)] = 25012, - [SMALL_STATE(418)] = 25116, - [SMALL_STATE(419)] = 25218, - [SMALL_STATE(420)] = 25322, - [SMALL_STATE(421)] = 25424, - [SMALL_STATE(422)] = 25526, - [SMALL_STATE(423)] = 25628, - [SMALL_STATE(424)] = 25730, - [SMALL_STATE(425)] = 25834, - [SMALL_STATE(426)] = 25936, - [SMALL_STATE(427)] = 26040, - [SMALL_STATE(428)] = 26142, - [SMALL_STATE(429)] = 26244, - [SMALL_STATE(430)] = 26346, - [SMALL_STATE(431)] = 26448, - [SMALL_STATE(432)] = 26550, - [SMALL_STATE(433)] = 26652, - [SMALL_STATE(434)] = 26756, - [SMALL_STATE(435)] = 26858, - [SMALL_STATE(436)] = 26952, - [SMALL_STATE(437)] = 27046, - [SMALL_STATE(438)] = 27150, - [SMALL_STATE(439)] = 27252, - [SMALL_STATE(440)] = 27354, - [SMALL_STATE(441)] = 27458, - [SMALL_STATE(442)] = 27562, - [SMALL_STATE(443)] = 27666, - [SMALL_STATE(444)] = 27768, - [SMALL_STATE(445)] = 27872, - [SMALL_STATE(446)] = 27974, - [SMALL_STATE(447)] = 28078, - [SMALL_STATE(448)] = 28180, - [SMALL_STATE(449)] = 28282, - [SMALL_STATE(450)] = 28384, - [SMALL_STATE(451)] = 28488, - [SMALL_STATE(452)] = 28590, - [SMALL_STATE(453)] = 28686, - [SMALL_STATE(454)] = 28780, - [SMALL_STATE(455)] = 28882, - [SMALL_STATE(456)] = 28984, - [SMALL_STATE(457)] = 29086, - [SMALL_STATE(458)] = 29190, - [SMALL_STATE(459)] = 29292, - [SMALL_STATE(460)] = 29393, - [SMALL_STATE(461)] = 29494, - [SMALL_STATE(462)] = 29595, - [SMALL_STATE(463)] = 29696, - [SMALL_STATE(464)] = 29797, - [SMALL_STATE(465)] = 29872, - [SMALL_STATE(466)] = 29973, - [SMALL_STATE(467)] = 30074, - [SMALL_STATE(468)] = 30175, - [SMALL_STATE(469)] = 30276, - [SMALL_STATE(470)] = 30377, - [SMALL_STATE(471)] = 30452, - [SMALL_STATE(472)] = 30553, - [SMALL_STATE(473)] = 30654, - [SMALL_STATE(474)] = 30755, - [SMALL_STATE(475)] = 30856, - [SMALL_STATE(476)] = 30933, - [SMALL_STATE(477)] = 31008, - [SMALL_STATE(478)] = 31109, - [SMALL_STATE(479)] = 31207, - [SMALL_STATE(480)] = 31305, - [SMALL_STATE(481)] = 31403, - [SMALL_STATE(482)] = 31501, - [SMALL_STATE(483)] = 31599, - [SMALL_STATE(484)] = 31697, - [SMALL_STATE(485)] = 31797, - [SMALL_STATE(486)] = 31895, - [SMALL_STATE(487)] = 31993, - [SMALL_STATE(488)] = 32091, - [SMALL_STATE(489)] = 32189, - [SMALL_STATE(490)] = 32287, - [SMALL_STATE(491)] = 32385, - [SMALL_STATE(492)] = 32483, - [SMALL_STATE(493)] = 32581, - [SMALL_STATE(494)] = 32679, - [SMALL_STATE(495)] = 32777, - [SMALL_STATE(496)] = 32875, - [SMALL_STATE(497)] = 32973, - [SMALL_STATE(498)] = 33071, - [SMALL_STATE(499)] = 33169, - [SMALL_STATE(500)] = 33267, - [SMALL_STATE(501)] = 33365, - [SMALL_STATE(502)] = 33463, - [SMALL_STATE(503)] = 33561, - [SMALL_STATE(504)] = 33659, - [SMALL_STATE(505)] = 33757, - [SMALL_STATE(506)] = 33855, - [SMALL_STATE(507)] = 33953, - [SMALL_STATE(508)] = 34051, - [SMALL_STATE(509)] = 34149, - [SMALL_STATE(510)] = 34247, - [SMALL_STATE(511)] = 34345, - [SMALL_STATE(512)] = 34443, - [SMALL_STATE(513)] = 34541, - [SMALL_STATE(514)] = 34639, - [SMALL_STATE(515)] = 34737, - [SMALL_STATE(516)] = 34835, - [SMALL_STATE(517)] = 34933, - [SMALL_STATE(518)] = 35033, - [SMALL_STATE(519)] = 35131, - [SMALL_STATE(520)] = 35229, - [SMALL_STATE(521)] = 35327, - [SMALL_STATE(522)] = 35425, - [SMALL_STATE(523)] = 35523, - [SMALL_STATE(524)] = 35621, - [SMALL_STATE(525)] = 35719, - [SMALL_STATE(526)] = 35817, - [SMALL_STATE(527)] = 35915, - [SMALL_STATE(528)] = 35987, - [SMALL_STATE(529)] = 36059, - [SMALL_STATE(530)] = 36157, - [SMALL_STATE(531)] = 36255, - [SMALL_STATE(532)] = 36355, - [SMALL_STATE(533)] = 36453, - [SMALL_STATE(534)] = 36551, - [SMALL_STATE(535)] = 36623, - [SMALL_STATE(536)] = 36721, - [SMALL_STATE(537)] = 36819, - [SMALL_STATE(538)] = 36917, - [SMALL_STATE(539)] = 37015, - [SMALL_STATE(540)] = 37113, - [SMALL_STATE(541)] = 37211, - [SMALL_STATE(542)] = 37309, - [SMALL_STATE(543)] = 37409, - [SMALL_STATE(544)] = 37481, - [SMALL_STATE(545)] = 37553, - [SMALL_STATE(546)] = 37651, - [SMALL_STATE(547)] = 37723, - [SMALL_STATE(548)] = 37821, - [SMALL_STATE(549)] = 37919, - [SMALL_STATE(550)] = 38017, - [SMALL_STATE(551)] = 38115, - [SMALL_STATE(552)] = 38213, - [SMALL_STATE(553)] = 38311, - [SMALL_STATE(554)] = 38411, - [SMALL_STATE(555)] = 38509, - [SMALL_STATE(556)] = 38607, - [SMALL_STATE(557)] = 38705, - [SMALL_STATE(558)] = 38803, - [SMALL_STATE(559)] = 38901, - [SMALL_STATE(560)] = 38999, - [SMALL_STATE(561)] = 39097, - [SMALL_STATE(562)] = 39195, - [SMALL_STATE(563)] = 39293, - [SMALL_STATE(564)] = 39391, - [SMALL_STATE(565)] = 39489, - [SMALL_STATE(566)] = 39587, - [SMALL_STATE(567)] = 39685, - [SMALL_STATE(568)] = 39783, - [SMALL_STATE(569)] = 39881, - [SMALL_STATE(570)] = 39979, - [SMALL_STATE(571)] = 40077, - [SMALL_STATE(572)] = 40175, - [SMALL_STATE(573)] = 40273, - [SMALL_STATE(574)] = 40371, - [SMALL_STATE(575)] = 40469, - [SMALL_STATE(576)] = 40567, - [SMALL_STATE(577)] = 40665, - [SMALL_STATE(578)] = 40763, - [SMALL_STATE(579)] = 40861, - [SMALL_STATE(580)] = 40959, - [SMALL_STATE(581)] = 41057, - [SMALL_STATE(582)] = 41155, - [SMALL_STATE(583)] = 41255, - [SMALL_STATE(584)] = 41353, - [SMALL_STATE(585)] = 41451, - [SMALL_STATE(586)] = 41549, - [SMALL_STATE(587)] = 41647, - [SMALL_STATE(588)] = 41745, - [SMALL_STATE(589)] = 41843, - [SMALL_STATE(590)] = 41941, - [SMALL_STATE(591)] = 42039, - [SMALL_STATE(592)] = 42137, - [SMALL_STATE(593)] = 42235, - [SMALL_STATE(594)] = 42333, - [SMALL_STATE(595)] = 42431, - [SMALL_STATE(596)] = 42529, - [SMALL_STATE(597)] = 42627, - [SMALL_STATE(598)] = 42725, - [SMALL_STATE(599)] = 42823, - [SMALL_STATE(600)] = 42921, - [SMALL_STATE(601)] = 43019, - [SMALL_STATE(602)] = 43117, - [SMALL_STATE(603)] = 43215, - [SMALL_STATE(604)] = 43287, - [SMALL_STATE(605)] = 43359, - [SMALL_STATE(606)] = 43457, - [SMALL_STATE(607)] = 43555, - [SMALL_STATE(608)] = 43653, - [SMALL_STATE(609)] = 43751, - [SMALL_STATE(610)] = 43849, - [SMALL_STATE(611)] = 43922, - [SMALL_STATE(612)] = 43984, - [SMALL_STATE(613)] = 44050, - [SMALL_STATE(614)] = 44112, - [SMALL_STATE(615)] = 44180, - [SMALL_STATE(616)] = 44248, - [SMALL_STATE(617)] = 44316, - [SMALL_STATE(618)] = 44384, - [SMALL_STATE(619)] = 44452, - [SMALL_STATE(620)] = 44518, - [SMALL_STATE(621)] = 44584, - [SMALL_STATE(622)] = 44652, - [SMALL_STATE(623)] = 44720, - [SMALL_STATE(624)] = 44788, - [SMALL_STATE(625)] = 44850, - [SMALL_STATE(626)] = 44918, - [SMALL_STATE(627)] = 44980, - [SMALL_STATE(628)] = 45045, - [SMALL_STATE(629)] = 45108, - [SMALL_STATE(630)] = 45171, - [SMALL_STATE(631)] = 45234, - [SMALL_STATE(632)] = 45297, - [SMALL_STATE(633)] = 45360, - [SMALL_STATE(634)] = 45423, - [SMALL_STATE(635)] = 45486, - [SMALL_STATE(636)] = 45543, - [SMALL_STATE(637)] = 45600, - [SMALL_STATE(638)] = 45663, - [SMALL_STATE(639)] = 45726, - [SMALL_STATE(640)] = 45787, - [SMALL_STATE(641)] = 45844, - [SMALL_STATE(642)] = 45901, - [SMALL_STATE(643)] = 45964, - [SMALL_STATE(644)] = 46021, - [SMALL_STATE(645)] = 46078, - [SMALL_STATE(646)] = 46135, - [SMALL_STATE(647)] = 46196, - [SMALL_STATE(648)] = 46257, - [SMALL_STATE(649)] = 46313, - [SMALL_STATE(650)] = 46369, - [SMALL_STATE(651)] = 46425, - [SMALL_STATE(652)] = 46481, - [SMALL_STATE(653)] = 46537, - [SMALL_STATE(654)] = 46593, - [SMALL_STATE(655)] = 46649, - [SMALL_STATE(656)] = 46705, - [SMALL_STATE(657)] = 46761, - [SMALL_STATE(658)] = 46817, - [SMALL_STATE(659)] = 46873, - [SMALL_STATE(660)] = 46929, - [SMALL_STATE(661)] = 46985, - [SMALL_STATE(662)] = 47041, - [SMALL_STATE(663)] = 47097, - [SMALL_STATE(664)] = 47153, - [SMALL_STATE(665)] = 47209, - [SMALL_STATE(666)] = 47265, - [SMALL_STATE(667)] = 47321, - [SMALL_STATE(668)] = 47377, - [SMALL_STATE(669)] = 47469, - [SMALL_STATE(670)] = 47525, - [SMALL_STATE(671)] = 47581, - [SMALL_STATE(672)] = 47637, - [SMALL_STATE(673)] = 47693, - [SMALL_STATE(674)] = 47749, - [SMALL_STATE(675)] = 47805, - [SMALL_STATE(676)] = 47861, - [SMALL_STATE(677)] = 47917, - [SMALL_STATE(678)] = 47973, - [SMALL_STATE(679)] = 48065, - [SMALL_STATE(680)] = 48121, - [SMALL_STATE(681)] = 48177, - [SMALL_STATE(682)] = 48233, - [SMALL_STATE(683)] = 48289, - [SMALL_STATE(684)] = 48345, - [SMALL_STATE(685)] = 48401, - [SMALL_STATE(686)] = 48457, - [SMALL_STATE(687)] = 48513, - [SMALL_STATE(688)] = 48569, - [SMALL_STATE(689)] = 48625, - [SMALL_STATE(690)] = 48681, - [SMALL_STATE(691)] = 48737, - [SMALL_STATE(692)] = 48793, - [SMALL_STATE(693)] = 48849, - [SMALL_STATE(694)] = 48905, + [SMALL_STATE(189)] = 0, + [SMALL_STATE(190)] = 126, + [SMALL_STATE(191)] = 252, + [SMALL_STATE(192)] = 376, + [SMALL_STATE(193)] = 502, + [SMALL_STATE(194)] = 628, + [SMALL_STATE(195)] = 752, + [SMALL_STATE(196)] = 876, + [SMALL_STATE(197)] = 1000, + [SMALL_STATE(198)] = 1128, + [SMALL_STATE(199)] = 1252, + [SMALL_STATE(200)] = 1376, + [SMALL_STATE(201)] = 1500, + [SMALL_STATE(202)] = 1626, + [SMALL_STATE(203)] = 1750, + [SMALL_STATE(204)] = 1870, + [SMALL_STATE(205)] = 1996, + [SMALL_STATE(206)] = 2120, + [SMALL_STATE(207)] = 2248, + [SMALL_STATE(208)] = 2368, + [SMALL_STATE(209)] = 2492, + [SMALL_STATE(210)] = 2618, + [SMALL_STATE(211)] = 2742, + [SMALL_STATE(212)] = 2866, + [SMALL_STATE(213)] = 2990, + [SMALL_STATE(214)] = 3114, + [SMALL_STATE(215)] = 3238, + [SMALL_STATE(216)] = 3362, + [SMALL_STATE(217)] = 3482, + [SMALL_STATE(218)] = 3606, + [SMALL_STATE(219)] = 3732, + [SMALL_STATE(220)] = 3858, + [SMALL_STATE(221)] = 3982, + [SMALL_STATE(222)] = 4106, + [SMALL_STATE(223)] = 4213, + [SMALL_STATE(224)] = 4320, + [SMALL_STATE(225)] = 4436, + [SMALL_STATE(226)] = 4552, + [SMALL_STATE(227)] = 4667, + [SMALL_STATE(228)] = 4778, + [SMALL_STATE(229)] = 4889, + [SMALL_STATE(230)] = 5000, + [SMALL_STATE(231)] = 5115, + [SMALL_STATE(232)] = 5226, + [SMALL_STATE(233)] = 5337, + [SMALL_STATE(234)] = 5452, + [SMALL_STATE(235)] = 5557, + [SMALL_STATE(236)] = 5668, + [SMALL_STATE(237)] = 5783, + [SMALL_STATE(238)] = 5894, + [SMALL_STATE(239)] = 6005, + [SMALL_STATE(240)] = 6116, + [SMALL_STATE(241)] = 6231, + [SMALL_STATE(242)] = 6342, + [SMALL_STATE(243)] = 6457, + [SMALL_STATE(244)] = 6568, + [SMALL_STATE(245)] = 6679, + [SMALL_STATE(246)] = 6790, + [SMALL_STATE(247)] = 6895, + [SMALL_STATE(248)] = 7006, + [SMALL_STATE(249)] = 7121, + [SMALL_STATE(250)] = 7232, + [SMALL_STATE(251)] = 7343, + [SMALL_STATE(252)] = 7454, + [SMALL_STATE(253)] = 7569, + [SMALL_STATE(254)] = 7680, + [SMALL_STATE(255)] = 7791, + [SMALL_STATE(256)] = 7902, + [SMALL_STATE(257)] = 8013, + [SMALL_STATE(258)] = 8124, + [SMALL_STATE(259)] = 8235, + [SMALL_STATE(260)] = 8346, + [SMALL_STATE(261)] = 8457, + [SMALL_STATE(262)] = 8568, + [SMALL_STATE(263)] = 8683, + [SMALL_STATE(264)] = 8800, + [SMALL_STATE(265)] = 8912, + [SMALL_STATE(266)] = 9024, + [SMALL_STATE(267)] = 9136, + [SMALL_STATE(268)] = 9252, + [SMALL_STATE(269)] = 9364, + [SMALL_STATE(270)] = 9476, + [SMALL_STATE(271)] = 9590, + [SMALL_STATE(272)] = 9702, + [SMALL_STATE(273)] = 9814, + [SMALL_STATE(274)] = 9930, + [SMALL_STATE(275)] = 10042, + [SMALL_STATE(276)] = 10154, + [SMALL_STATE(277)] = 10266, + [SMALL_STATE(278)] = 10378, + [SMALL_STATE(279)] = 10490, + [SMALL_STATE(280)] = 10602, + [SMALL_STATE(281)] = 10714, + [SMALL_STATE(282)] = 10826, + [SMALL_STATE(283)] = 10938, + [SMALL_STATE(284)] = 11050, + [SMALL_STATE(285)] = 11162, + [SMALL_STATE(286)] = 11274, + [SMALL_STATE(287)] = 11386, + [SMALL_STATE(288)] = 11498, + [SMALL_STATE(289)] = 11614, + [SMALL_STATE(290)] = 11726, + [SMALL_STATE(291)] = 11838, + [SMALL_STATE(292)] = 11950, + [SMALL_STATE(293)] = 12062, + [SMALL_STATE(294)] = 12176, + [SMALL_STATE(295)] = 12290, + [SMALL_STATE(296)] = 12402, + [SMALL_STATE(297)] = 12514, + [SMALL_STATE(298)] = 12630, + [SMALL_STATE(299)] = 12742, + [SMALL_STATE(300)] = 12854, + [SMALL_STATE(301)] = 12966, + [SMALL_STATE(302)] = 13078, + [SMALL_STATE(303)] = 13192, + [SMALL_STATE(304)] = 13304, + [SMALL_STATE(305)] = 13416, + [SMALL_STATE(306)] = 13532, + [SMALL_STATE(307)] = 13646, + [SMALL_STATE(308)] = 13758, + [SMALL_STATE(309)] = 13872, + [SMALL_STATE(310)] = 13984, + [SMALL_STATE(311)] = 14100, + [SMALL_STATE(312)] = 14212, + [SMALL_STATE(313)] = 14326, + [SMALL_STATE(314)] = 14438, + [SMALL_STATE(315)] = 14550, + [SMALL_STATE(316)] = 14664, + [SMALL_STATE(317)] = 14776, + [SMALL_STATE(318)] = 14888, + [SMALL_STATE(319)] = 14997, + [SMALL_STATE(320)] = 15106, + [SMALL_STATE(321)] = 15215, + [SMALL_STATE(322)] = 15324, + [SMALL_STATE(323)] = 15433, + [SMALL_STATE(324)] = 15542, + [SMALL_STATE(325)] = 15647, + [SMALL_STATE(326)] = 15756, + [SMALL_STATE(327)] = 15865, + [SMALL_STATE(328)] = 15974, + [SMALL_STATE(329)] = 16083, + [SMALL_STATE(330)] = 16192, + [SMALL_STATE(331)] = 16301, + [SMALL_STATE(332)] = 16410, + [SMALL_STATE(333)] = 16519, + [SMALL_STATE(334)] = 16628, + [SMALL_STATE(335)] = 16737, + [SMALL_STATE(336)] = 16846, + [SMALL_STATE(337)] = 16955, + [SMALL_STATE(338)] = 17064, + [SMALL_STATE(339)] = 17169, + [SMALL_STATE(340)] = 17266, + [SMALL_STATE(341)] = 17374, + [SMALL_STATE(342)] = 17482, + [SMALL_STATE(343)] = 17590, + [SMALL_STATE(344)] = 17698, + [SMALL_STATE(345)] = 17806, + [SMALL_STATE(346)] = 17914, + [SMALL_STATE(347)] = 18022, + [SMALL_STATE(348)] = 18130, + [SMALL_STATE(349)] = 18238, + [SMALL_STATE(350)] = 18344, + [SMALL_STATE(351)] = 18450, + [SMALL_STATE(352)] = 18558, + [SMALL_STATE(353)] = 18666, + [SMALL_STATE(354)] = 18774, + [SMALL_STATE(355)] = 18882, + [SMALL_STATE(356)] = 18990, + [SMALL_STATE(357)] = 19098, + [SMALL_STATE(358)] = 19206, + [SMALL_STATE(359)] = 19314, + [SMALL_STATE(360)] = 19422, + [SMALL_STATE(361)] = 19530, + [SMALL_STATE(362)] = 19638, + [SMALL_STATE(363)] = 19744, + [SMALL_STATE(364)] = 19851, + [SMALL_STATE(365)] = 19958, + [SMALL_STATE(366)] = 20065, + [SMALL_STATE(367)] = 20172, + [SMALL_STATE(368)] = 20279, + [SMALL_STATE(369)] = 20384, + [SMALL_STATE(370)] = 20491, + [SMALL_STATE(371)] = 20598, + [SMALL_STATE(372)] = 20705, + [SMALL_STATE(373)] = 20812, + [SMALL_STATE(374)] = 20907, + [SMALL_STATE(375)] = 21014, + [SMALL_STATE(376)] = 21119, + [SMALL_STATE(377)] = 21224, + [SMALL_STATE(378)] = 21331, + [SMALL_STATE(379)] = 21438, + [SMALL_STATE(380)] = 21545, + [SMALL_STATE(381)] = 21652, + [SMALL_STATE(382)] = 21759, + [SMALL_STATE(383)] = 21864, + [SMALL_STATE(384)] = 21971, + [SMALL_STATE(385)] = 22078, + [SMALL_STATE(386)] = 22185, + [SMALL_STATE(387)] = 22290, + [SMALL_STATE(388)] = 22397, + [SMALL_STATE(389)] = 22502, + [SMALL_STATE(390)] = 22609, + [SMALL_STATE(391)] = 22716, + [SMALL_STATE(392)] = 22823, + [SMALL_STATE(393)] = 22930, + [SMALL_STATE(394)] = 23037, + [SMALL_STATE(395)] = 23144, + [SMALL_STATE(396)] = 23251, + [SMALL_STATE(397)] = 23358, + [SMALL_STATE(398)] = 23453, + [SMALL_STATE(399)] = 23560, + [SMALL_STATE(400)] = 23667, + [SMALL_STATE(401)] = 23774, + [SMALL_STATE(402)] = 23876, + [SMALL_STATE(403)] = 23978, + [SMALL_STATE(404)] = 24080, + [SMALL_STATE(405)] = 24174, + [SMALL_STATE(406)] = 24276, + [SMALL_STATE(407)] = 24378, + [SMALL_STATE(408)] = 24480, + [SMALL_STATE(409)] = 24582, + [SMALL_STATE(410)] = 24684, + [SMALL_STATE(411)] = 24786, + [SMALL_STATE(412)] = 24882, + [SMALL_STATE(413)] = 24984, + [SMALL_STATE(414)] = 25086, + [SMALL_STATE(415)] = 25188, + [SMALL_STATE(416)] = 25290, + [SMALL_STATE(417)] = 25392, + [SMALL_STATE(418)] = 25494, + [SMALL_STATE(419)] = 25598, + [SMALL_STATE(420)] = 25700, + [SMALL_STATE(421)] = 25804, + [SMALL_STATE(422)] = 25906, + [SMALL_STATE(423)] = 26008, + [SMALL_STATE(424)] = 26112, + [SMALL_STATE(425)] = 26216, + [SMALL_STATE(426)] = 26318, + [SMALL_STATE(427)] = 26420, + [SMALL_STATE(428)] = 26524, + [SMALL_STATE(429)] = 26628, + [SMALL_STATE(430)] = 26730, + [SMALL_STATE(431)] = 26834, + [SMALL_STATE(432)] = 26938, + [SMALL_STATE(433)] = 27032, + [SMALL_STATE(434)] = 27136, + [SMALL_STATE(435)] = 27240, + [SMALL_STATE(436)] = 27342, + [SMALL_STATE(437)] = 27446, + [SMALL_STATE(438)] = 27550, + [SMALL_STATE(439)] = 27654, + [SMALL_STATE(440)] = 27758, + [SMALL_STATE(441)] = 27862, + [SMALL_STATE(442)] = 27956, + [SMALL_STATE(443)] = 28060, + [SMALL_STATE(444)] = 28162, + [SMALL_STATE(445)] = 28264, + [SMALL_STATE(446)] = 28368, + [SMALL_STATE(447)] = 28470, + [SMALL_STATE(448)] = 28574, + [SMALL_STATE(449)] = 28676, + [SMALL_STATE(450)] = 28770, + [SMALL_STATE(451)] = 28872, + [SMALL_STATE(452)] = 28974, + [SMALL_STATE(453)] = 29078, + [SMALL_STATE(454)] = 29179, + [SMALL_STATE(455)] = 29280, + [SMALL_STATE(456)] = 29357, + [SMALL_STATE(457)] = 29458, + [SMALL_STATE(458)] = 29559, + [SMALL_STATE(459)] = 29660, + [SMALL_STATE(460)] = 29761, + [SMALL_STATE(461)] = 29862, + [SMALL_STATE(462)] = 29937, + [SMALL_STATE(463)] = 30012, + [SMALL_STATE(464)] = 30113, + [SMALL_STATE(465)] = 30214, + [SMALL_STATE(466)] = 30315, + [SMALL_STATE(467)] = 30416, + [SMALL_STATE(468)] = 30517, + [SMALL_STATE(469)] = 30618, + [SMALL_STATE(470)] = 30693, + [SMALL_STATE(471)] = 30794, + [SMALL_STATE(472)] = 30895, + [SMALL_STATE(473)] = 30993, + [SMALL_STATE(474)] = 31091, + [SMALL_STATE(475)] = 31189, + [SMALL_STATE(476)] = 31287, + [SMALL_STATE(477)] = 31385, + [SMALL_STATE(478)] = 31483, + [SMALL_STATE(479)] = 31581, + [SMALL_STATE(480)] = 31679, + [SMALL_STATE(481)] = 31777, + [SMALL_STATE(482)] = 31875, + [SMALL_STATE(483)] = 31973, + [SMALL_STATE(484)] = 32071, + [SMALL_STATE(485)] = 32169, + [SMALL_STATE(486)] = 32241, + [SMALL_STATE(487)] = 32313, + [SMALL_STATE(488)] = 32411, + [SMALL_STATE(489)] = 32509, + [SMALL_STATE(490)] = 32607, + [SMALL_STATE(491)] = 32705, + [SMALL_STATE(492)] = 32805, + [SMALL_STATE(493)] = 32903, + [SMALL_STATE(494)] = 33001, + [SMALL_STATE(495)] = 33099, + [SMALL_STATE(496)] = 33197, + [SMALL_STATE(497)] = 33295, + [SMALL_STATE(498)] = 33393, + [SMALL_STATE(499)] = 33491, + [SMALL_STATE(500)] = 33589, + [SMALL_STATE(501)] = 33689, + [SMALL_STATE(502)] = 33787, + [SMALL_STATE(503)] = 33885, + [SMALL_STATE(504)] = 33985, + [SMALL_STATE(505)] = 34083, + [SMALL_STATE(506)] = 34181, + [SMALL_STATE(507)] = 34279, + [SMALL_STATE(508)] = 34377, + [SMALL_STATE(509)] = 34475, + [SMALL_STATE(510)] = 34573, + [SMALL_STATE(511)] = 34671, + [SMALL_STATE(512)] = 34769, + [SMALL_STATE(513)] = 34867, + [SMALL_STATE(514)] = 34965, + [SMALL_STATE(515)] = 35063, + [SMALL_STATE(516)] = 35161, + [SMALL_STATE(517)] = 35259, + [SMALL_STATE(518)] = 35357, + [SMALL_STATE(519)] = 35455, + [SMALL_STATE(520)] = 35553, + [SMALL_STATE(521)] = 35651, + [SMALL_STATE(522)] = 35749, + [SMALL_STATE(523)] = 35847, + [SMALL_STATE(524)] = 35945, + [SMALL_STATE(525)] = 36017, + [SMALL_STATE(526)] = 36115, + [SMALL_STATE(527)] = 36213, + [SMALL_STATE(528)] = 36311, + [SMALL_STATE(529)] = 36383, + [SMALL_STATE(530)] = 36455, + [SMALL_STATE(531)] = 36553, + [SMALL_STATE(532)] = 36651, + [SMALL_STATE(533)] = 36749, + [SMALL_STATE(534)] = 36847, + [SMALL_STATE(535)] = 36919, + [SMALL_STATE(536)] = 37017, + [SMALL_STATE(537)] = 37115, + [SMALL_STATE(538)] = 37213, + [SMALL_STATE(539)] = 37311, + [SMALL_STATE(540)] = 37409, + [SMALL_STATE(541)] = 37507, + [SMALL_STATE(542)] = 37605, + [SMALL_STATE(543)] = 37703, + [SMALL_STATE(544)] = 37801, + [SMALL_STATE(545)] = 37899, + [SMALL_STATE(546)] = 37997, + [SMALL_STATE(547)] = 38095, + [SMALL_STATE(548)] = 38193, + [SMALL_STATE(549)] = 38291, + [SMALL_STATE(550)] = 38389, + [SMALL_STATE(551)] = 38487, + [SMALL_STATE(552)] = 38559, + [SMALL_STATE(553)] = 38657, + [SMALL_STATE(554)] = 38755, + [SMALL_STATE(555)] = 38827, + [SMALL_STATE(556)] = 38925, + [SMALL_STATE(557)] = 39023, + [SMALL_STATE(558)] = 39121, + [SMALL_STATE(559)] = 39219, + [SMALL_STATE(560)] = 39319, + [SMALL_STATE(561)] = 39417, + [SMALL_STATE(562)] = 39515, + [SMALL_STATE(563)] = 39613, + [SMALL_STATE(564)] = 39711, + [SMALL_STATE(565)] = 39809, + [SMALL_STATE(566)] = 39907, + [SMALL_STATE(567)] = 40005, + [SMALL_STATE(568)] = 40103, + [SMALL_STATE(569)] = 40201, + [SMALL_STATE(570)] = 40299, + [SMALL_STATE(571)] = 40397, + [SMALL_STATE(572)] = 40495, + [SMALL_STATE(573)] = 40593, + [SMALL_STATE(574)] = 40691, + [SMALL_STATE(575)] = 40789, + [SMALL_STATE(576)] = 40887, + [SMALL_STATE(577)] = 40985, + [SMALL_STATE(578)] = 41083, + [SMALL_STATE(579)] = 41181, + [SMALL_STATE(580)] = 41279, + [SMALL_STATE(581)] = 41377, + [SMALL_STATE(582)] = 41475, + [SMALL_STATE(583)] = 41573, + [SMALL_STATE(584)] = 41671, + [SMALL_STATE(585)] = 41769, + [SMALL_STATE(586)] = 41867, + [SMALL_STATE(587)] = 41965, + [SMALL_STATE(588)] = 42063, + [SMALL_STATE(589)] = 42161, + [SMALL_STATE(590)] = 42261, + [SMALL_STATE(591)] = 42359, + [SMALL_STATE(592)] = 42457, + [SMALL_STATE(593)] = 42555, + [SMALL_STATE(594)] = 42653, + [SMALL_STATE(595)] = 42751, + [SMALL_STATE(596)] = 42851, + [SMALL_STATE(597)] = 42949, + [SMALL_STATE(598)] = 43047, + [SMALL_STATE(599)] = 43145, + [SMALL_STATE(600)] = 43243, + [SMALL_STATE(601)] = 43341, + [SMALL_STATE(602)] = 43414, + [SMALL_STATE(603)] = 43476, + [SMALL_STATE(604)] = 43542, + [SMALL_STATE(605)] = 43610, + [SMALL_STATE(606)] = 43678, + [SMALL_STATE(607)] = 43746, + [SMALL_STATE(608)] = 43814, + [SMALL_STATE(609)] = 43882, + [SMALL_STATE(610)] = 43950, + [SMALL_STATE(611)] = 44018, + [SMALL_STATE(612)] = 44080, + [SMALL_STATE(613)] = 44146, + [SMALL_STATE(614)] = 44214, + [SMALL_STATE(615)] = 44282, + [SMALL_STATE(616)] = 44348, + [SMALL_STATE(617)] = 44410, + [SMALL_STATE(618)] = 44472, + [SMALL_STATE(619)] = 44529, + [SMALL_STATE(620)] = 44592, + [SMALL_STATE(621)] = 44653, + [SMALL_STATE(622)] = 44716, + [SMALL_STATE(623)] = 44777, + [SMALL_STATE(624)] = 44838, + [SMALL_STATE(625)] = 44895, + [SMALL_STATE(626)] = 44960, + [SMALL_STATE(627)] = 45023, + [SMALL_STATE(628)] = 45086, + [SMALL_STATE(629)] = 45143, + [SMALL_STATE(630)] = 45206, + [SMALL_STATE(631)] = 45263, + [SMALL_STATE(632)] = 45326, + [SMALL_STATE(633)] = 45389, + [SMALL_STATE(634)] = 45452, + [SMALL_STATE(635)] = 45515, + [SMALL_STATE(636)] = 45572, + [SMALL_STATE(637)] = 45629, + [SMALL_STATE(638)] = 45686, + [SMALL_STATE(639)] = 45749, + [SMALL_STATE(640)] = 45805, + [SMALL_STATE(641)] = 45861, + [SMALL_STATE(642)] = 45917, + [SMALL_STATE(643)] = 45973, + [SMALL_STATE(644)] = 46029, + [SMALL_STATE(645)] = 46085, + [SMALL_STATE(646)] = 46141, + [SMALL_STATE(647)] = 46197, + [SMALL_STATE(648)] = 46253, + [SMALL_STATE(649)] = 46309, + [SMALL_STATE(650)] = 46365, + [SMALL_STATE(651)] = 46421, + [SMALL_STATE(652)] = 46513, + [SMALL_STATE(653)] = 46569, + [SMALL_STATE(654)] = 46625, + [SMALL_STATE(655)] = 46681, + [SMALL_STATE(656)] = 46737, + [SMALL_STATE(657)] = 46793, + [SMALL_STATE(658)] = 46849, + [SMALL_STATE(659)] = 46905, + [SMALL_STATE(660)] = 46961, + [SMALL_STATE(661)] = 47017, + [SMALL_STATE(662)] = 47073, + [SMALL_STATE(663)] = 47129, + [SMALL_STATE(664)] = 47185, + [SMALL_STATE(665)] = 47241, + [SMALL_STATE(666)] = 47297, + [SMALL_STATE(667)] = 47353, + [SMALL_STATE(668)] = 47409, + [SMALL_STATE(669)] = 47465, + [SMALL_STATE(670)] = 47521, + [SMALL_STATE(671)] = 47577, + [SMALL_STATE(672)] = 47633, + [SMALL_STATE(673)] = 47689, + [SMALL_STATE(674)] = 47745, + [SMALL_STATE(675)] = 47801, + [SMALL_STATE(676)] = 47857, + [SMALL_STATE(677)] = 47913, + [SMALL_STATE(678)] = 48005, + [SMALL_STATE(679)] = 48061, + [SMALL_STATE(680)] = 48117, + [SMALL_STATE(681)] = 48173, + [SMALL_STATE(682)] = 48229, + [SMALL_STATE(683)] = 48285, + [SMALL_STATE(684)] = 48341, + [SMALL_STATE(685)] = 48397, + [SMALL_STATE(686)] = 48453, + [SMALL_STATE(687)] = 48509, + [SMALL_STATE(688)] = 48565, + [SMALL_STATE(689)] = 48621, + [SMALL_STATE(690)] = 48677, + [SMALL_STATE(691)] = 48733, + [SMALL_STATE(692)] = 48792, + [SMALL_STATE(693)] = 48847, + [SMALL_STATE(694)] = 48902, [SMALL_STATE(695)] = 48961, - [SMALL_STATE(696)] = 49017, - [SMALL_STATE(697)] = 49073, - [SMALL_STATE(698)] = 49129, - [SMALL_STATE(699)] = 49185, - [SMALL_STATE(700)] = 49241, - [SMALL_STATE(701)] = 49300, - [SMALL_STATE(702)] = 49355, - [SMALL_STATE(703)] = 49414, - [SMALL_STATE(704)] = 49473, - [SMALL_STATE(705)] = 49532, - [SMALL_STATE(706)] = 49587, - [SMALL_STATE(707)] = 49646, - [SMALL_STATE(708)] = 49705, - [SMALL_STATE(709)] = 49764, - [SMALL_STATE(710)] = 49823, - [SMALL_STATE(711)] = 49878, - [SMALL_STATE(712)] = 49937, - [SMALL_STATE(713)] = 49996, - [SMALL_STATE(714)] = 50055, - [SMALL_STATE(715)] = 50114, - [SMALL_STATE(716)] = 50173, - [SMALL_STATE(717)] = 50232, - [SMALL_STATE(718)] = 50291, - [SMALL_STATE(719)] = 50350, - [SMALL_STATE(720)] = 50405, - [SMALL_STATE(721)] = 50460, - [SMALL_STATE(722)] = 50515, - [SMALL_STATE(723)] = 50569, - [SMALL_STATE(724)] = 50623, - [SMALL_STATE(725)] = 50677, - [SMALL_STATE(726)] = 50769, - [SMALL_STATE(727)] = 50823, - [SMALL_STATE(728)] = 50915, - [SMALL_STATE(729)] = 50968, - [SMALL_STATE(730)] = 51021, - [SMALL_STATE(731)] = 51074, - [SMALL_STATE(732)] = 51127, - [SMALL_STATE(733)] = 51180, - [SMALL_STATE(734)] = 51233, - [SMALL_STATE(735)] = 51286, - [SMALL_STATE(736)] = 51339, - [SMALL_STATE(737)] = 51428, - [SMALL_STATE(738)] = 51481, - [SMALL_STATE(739)] = 51534, - [SMALL_STATE(740)] = 51587, - [SMALL_STATE(741)] = 51640, - [SMALL_STATE(742)] = 51693, - [SMALL_STATE(743)] = 51746, - [SMALL_STATE(744)] = 51799, - [SMALL_STATE(745)] = 51852, - [SMALL_STATE(746)] = 51905, - [SMALL_STATE(747)] = 51958, - [SMALL_STATE(748)] = 52011, - [SMALL_STATE(749)] = 52064, - [SMALL_STATE(750)] = 52117, - [SMALL_STATE(751)] = 52170, - [SMALL_STATE(752)] = 52223, - [SMALL_STATE(753)] = 52276, - [SMALL_STATE(754)] = 52329, - [SMALL_STATE(755)] = 52382, - [SMALL_STATE(756)] = 52435, - [SMALL_STATE(757)] = 52488, - [SMALL_STATE(758)] = 52541, - [SMALL_STATE(759)] = 52594, - [SMALL_STATE(760)] = 52647, - [SMALL_STATE(761)] = 52700, - [SMALL_STATE(762)] = 52753, - [SMALL_STATE(763)] = 52842, - [SMALL_STATE(764)] = 52895, - [SMALL_STATE(765)] = 52948, - [SMALL_STATE(766)] = 53001, - [SMALL_STATE(767)] = 53054, - [SMALL_STATE(768)] = 53107, - [SMALL_STATE(769)] = 53160, - [SMALL_STATE(770)] = 53213, - [SMALL_STATE(771)] = 53266, - [SMALL_STATE(772)] = 53319, - [SMALL_STATE(773)] = 53372, - [SMALL_STATE(774)] = 53425, - [SMALL_STATE(775)] = 53478, - [SMALL_STATE(776)] = 53531, - [SMALL_STATE(777)] = 53584, - [SMALL_STATE(778)] = 53637, - [SMALL_STATE(779)] = 53690, - [SMALL_STATE(780)] = 53743, - [SMALL_STATE(781)] = 53796, - [SMALL_STATE(782)] = 53849, - [SMALL_STATE(783)] = 53938, - [SMALL_STATE(784)] = 53991, - [SMALL_STATE(785)] = 54044, - [SMALL_STATE(786)] = 54097, - [SMALL_STATE(787)] = 54150, - [SMALL_STATE(788)] = 54203, - [SMALL_STATE(789)] = 54256, - [SMALL_STATE(790)] = 54345, - [SMALL_STATE(791)] = 54398, - [SMALL_STATE(792)] = 54451, - [SMALL_STATE(793)] = 54504, - [SMALL_STATE(794)] = 54557, - [SMALL_STATE(795)] = 54610, - [SMALL_STATE(796)] = 54663, - [SMALL_STATE(797)] = 54716, - [SMALL_STATE(798)] = 54805, - [SMALL_STATE(799)] = 54858, - [SMALL_STATE(800)] = 54911, - [SMALL_STATE(801)] = 54964, - [SMALL_STATE(802)] = 55017, - [SMALL_STATE(803)] = 55070, - [SMALL_STATE(804)] = 55123, - [SMALL_STATE(805)] = 55212, - [SMALL_STATE(806)] = 55265, - [SMALL_STATE(807)] = 55354, - [SMALL_STATE(808)] = 55407, - [SMALL_STATE(809)] = 55496, - [SMALL_STATE(810)] = 55549, - [SMALL_STATE(811)] = 55602, - [SMALL_STATE(812)] = 55691, - [SMALL_STATE(813)] = 55744, - [SMALL_STATE(814)] = 55797, - [SMALL_STATE(815)] = 55886, - [SMALL_STATE(816)] = 55939, - [SMALL_STATE(817)] = 55992, - [SMALL_STATE(818)] = 56045, - [SMALL_STATE(819)] = 56134, - [SMALL_STATE(820)] = 56187, - [SMALL_STATE(821)] = 56240, - [SMALL_STATE(822)] = 56293, - [SMALL_STATE(823)] = 56346, - [SMALL_STATE(824)] = 56399, - [SMALL_STATE(825)] = 56452, - [SMALL_STATE(826)] = 56505, - [SMALL_STATE(827)] = 56558, - [SMALL_STATE(828)] = 56611, - [SMALL_STATE(829)] = 56700, - [SMALL_STATE(830)] = 56753, - [SMALL_STATE(831)] = 56806, - [SMALL_STATE(832)] = 56859, - [SMALL_STATE(833)] = 56912, - [SMALL_STATE(834)] = 56965, - [SMALL_STATE(835)] = 57018, - [SMALL_STATE(836)] = 57107, - [SMALL_STATE(837)] = 57196, - [SMALL_STATE(838)] = 57249, - [SMALL_STATE(839)] = 57302, - [SMALL_STATE(840)] = 57355, - [SMALL_STATE(841)] = 57408, - [SMALL_STATE(842)] = 57461, - [SMALL_STATE(843)] = 57514, - [SMALL_STATE(844)] = 57567, - [SMALL_STATE(845)] = 57620, - [SMALL_STATE(846)] = 57673, - [SMALL_STATE(847)] = 57726, - [SMALL_STATE(848)] = 57779, - [SMALL_STATE(849)] = 57832, - [SMALL_STATE(850)] = 57921, - [SMALL_STATE(851)] = 57974, - [SMALL_STATE(852)] = 58063, - [SMALL_STATE(853)] = 58149, - [SMALL_STATE(854)] = 58235, - [SMALL_STATE(855)] = 58321, - [SMALL_STATE(856)] = 58407, - [SMALL_STATE(857)] = 58493, - [SMALL_STATE(858)] = 58579, - [SMALL_STATE(859)] = 58662, - [SMALL_STATE(860)] = 58745, - [SMALL_STATE(861)] = 58823, - [SMALL_STATE(862)] = 58901, - [SMALL_STATE(863)] = 58979, - [SMALL_STATE(864)] = 59057, - [SMALL_STATE(865)] = 59135, - [SMALL_STATE(866)] = 59213, - [SMALL_STATE(867)] = 59291, - [SMALL_STATE(868)] = 59369, - [SMALL_STATE(869)] = 59444, - [SMALL_STATE(870)] = 59519, - [SMALL_STATE(871)] = 59594, - [SMALL_STATE(872)] = 59669, - [SMALL_STATE(873)] = 59744, - [SMALL_STATE(874)] = 59823, - [SMALL_STATE(875)] = 59898, - [SMALL_STATE(876)] = 59973, - [SMALL_STATE(877)] = 60048, - [SMALL_STATE(878)] = 60123, - [SMALL_STATE(879)] = 60198, - [SMALL_STATE(880)] = 60273, - [SMALL_STATE(881)] = 60348, - [SMALL_STATE(882)] = 60423, - [SMALL_STATE(883)] = 60498, - [SMALL_STATE(884)] = 60577, - [SMALL_STATE(885)] = 60652, - [SMALL_STATE(886)] = 60727, - [SMALL_STATE(887)] = 60806, - [SMALL_STATE(888)] = 60881, - [SMALL_STATE(889)] = 60956, - [SMALL_STATE(890)] = 61031, - [SMALL_STATE(891)] = 61106, - [SMALL_STATE(892)] = 61181, - [SMALL_STATE(893)] = 61256, - [SMALL_STATE(894)] = 61331, - [SMALL_STATE(895)] = 61406, - [SMALL_STATE(896)] = 61485, - [SMALL_STATE(897)] = 61560, - [SMALL_STATE(898)] = 61635, - [SMALL_STATE(899)] = 61710, - [SMALL_STATE(900)] = 61785, - [SMALL_STATE(901)] = 61860, - [SMALL_STATE(902)] = 61935, - [SMALL_STATE(903)] = 62010, - [SMALL_STATE(904)] = 62085, - [SMALL_STATE(905)] = 62160, - [SMALL_STATE(906)] = 62239, - [SMALL_STATE(907)] = 62318, - [SMALL_STATE(908)] = 62393, - [SMALL_STATE(909)] = 62468, - [SMALL_STATE(910)] = 62543, - [SMALL_STATE(911)] = 62618, - [SMALL_STATE(912)] = 62693, - [SMALL_STATE(913)] = 62768, - [SMALL_STATE(914)] = 62843, - [SMALL_STATE(915)] = 62918, - [SMALL_STATE(916)] = 62997, - [SMALL_STATE(917)] = 63072, - [SMALL_STATE(918)] = 63151, - [SMALL_STATE(919)] = 63230, - [SMALL_STATE(920)] = 63305, - [SMALL_STATE(921)] = 63380, - [SMALL_STATE(922)] = 63455, - [SMALL_STATE(923)] = 63530, - [SMALL_STATE(924)] = 63605, - [SMALL_STATE(925)] = 63684, - [SMALL_STATE(926)] = 63763, - [SMALL_STATE(927)] = 63842, - [SMALL_STATE(928)] = 63921, - [SMALL_STATE(929)] = 63996, - [SMALL_STATE(930)] = 64071, - [SMALL_STATE(931)] = 64150, - [SMALL_STATE(932)] = 64225, - [SMALL_STATE(933)] = 64300, - [SMALL_STATE(934)] = 64375, - [SMALL_STATE(935)] = 64450, - [SMALL_STATE(936)] = 64525, - [SMALL_STATE(937)] = 64600, - [SMALL_STATE(938)] = 64675, - [SMALL_STATE(939)] = 64750, - [SMALL_STATE(940)] = 64829, - [SMALL_STATE(941)] = 64908, - [SMALL_STATE(942)] = 64983, - [SMALL_STATE(943)] = 65058, - [SMALL_STATE(944)] = 65133, - [SMALL_STATE(945)] = 65208, - [SMALL_STATE(946)] = 65283, - [SMALL_STATE(947)] = 65358, - [SMALL_STATE(948)] = 65437, - [SMALL_STATE(949)] = 65512, - [SMALL_STATE(950)] = 65587, - [SMALL_STATE(951)] = 65662, - [SMALL_STATE(952)] = 65737, - [SMALL_STATE(953)] = 65812, - [SMALL_STATE(954)] = 65887, - [SMALL_STATE(955)] = 65962, - [SMALL_STATE(956)] = 66037, - [SMALL_STATE(957)] = 66112, - [SMALL_STATE(958)] = 66187, - [SMALL_STATE(959)] = 66266, - [SMALL_STATE(960)] = 66341, - [SMALL_STATE(961)] = 66416, - [SMALL_STATE(962)] = 66491, - [SMALL_STATE(963)] = 66566, - [SMALL_STATE(964)] = 66641, - [SMALL_STATE(965)] = 66716, - [SMALL_STATE(966)] = 66791, - [SMALL_STATE(967)] = 66866, - [SMALL_STATE(968)] = 66941, - [SMALL_STATE(969)] = 67016, - [SMALL_STATE(970)] = 67095, - [SMALL_STATE(971)] = 67174, - [SMALL_STATE(972)] = 67249, - [SMALL_STATE(973)] = 67324, - [SMALL_STATE(974)] = 67399, - [SMALL_STATE(975)] = 67474, - [SMALL_STATE(976)] = 67549, - [SMALL_STATE(977)] = 67631, - [SMALL_STATE(978)] = 67683, - [SMALL_STATE(979)] = 67735, - [SMALL_STATE(980)] = 67787, - [SMALL_STATE(981)] = 67852, - [SMALL_STATE(982)] = 67909, - [SMALL_STATE(983)] = 67978, - [SMALL_STATE(984)] = 68035, - [SMALL_STATE(985)] = 68086, - [SMALL_STATE(986)] = 68153, - [SMALL_STATE(987)] = 68224, - [SMALL_STATE(988)] = 68295, - [SMALL_STATE(989)] = 68352, - [SMALL_STATE(990)] = 68403, - [SMALL_STATE(991)] = 68484, - [SMALL_STATE(992)] = 68535, - [SMALL_STATE(993)] = 68586, - [SMALL_STATE(994)] = 68647, - [SMALL_STATE(995)] = 68704, - [SMALL_STATE(996)] = 68785, - [SMALL_STATE(997)] = 68856, - [SMALL_STATE(998)] = 68919, - [SMALL_STATE(999)] = 68970, - [SMALL_STATE(1000)] = 69021, - [SMALL_STATE(1001)] = 69067, - [SMALL_STATE(1002)] = 69129, - [SMALL_STATE(1003)] = 69185, - [SMALL_STATE(1004)] = 69231, - [SMALL_STATE(1005)] = 69311, - [SMALL_STATE(1006)] = 69381, - [SMALL_STATE(1007)] = 69431, - [SMALL_STATE(1008)] = 69491, - [SMALL_STATE(1009)] = 69561, - [SMALL_STATE(1010)] = 69617, - [SMALL_STATE(1011)] = 69679, - [SMALL_STATE(1012)] = 69749, - [SMALL_STATE(1013)] = 69805, - [SMALL_STATE(1014)] = 69873, - [SMALL_STATE(1015)] = 69923, - [SMALL_STATE(1016)] = 69983, - [SMALL_STATE(1017)] = 70051, - [SMALL_STATE(1018)] = 70099, - [SMALL_STATE(1019)] = 70165, - [SMALL_STATE(1020)] = 70229, - [SMALL_STATE(1021)] = 70277, - [SMALL_STATE(1022)] = 70327, - [SMALL_STATE(1023)] = 70397, - [SMALL_STATE(1024)] = 70467, - [SMALL_STATE(1025)] = 70517, - [SMALL_STATE(1026)] = 70587, - [SMALL_STATE(1027)] = 70667, - [SMALL_STATE(1028)] = 70713, - [SMALL_STATE(1029)] = 70761, - [SMALL_STATE(1030)] = 70807, - [SMALL_STATE(1031)] = 70885, - [SMALL_STATE(1032)] = 70931, - [SMALL_STATE(1033)] = 70981, - [SMALL_STATE(1034)] = 71037, - [SMALL_STATE(1035)] = 71093, - [SMALL_STATE(1036)] = 71143, - [SMALL_STATE(1037)] = 71199, - [SMALL_STATE(1038)] = 71249, - [SMALL_STATE(1039)] = 71315, - [SMALL_STATE(1040)] = 71371, - [SMALL_STATE(1041)] = 71421, - [SMALL_STATE(1042)] = 71467, - [SMALL_STATE(1043)] = 71523, - [SMALL_STATE(1044)] = 71573, - [SMALL_STATE(1045)] = 71623, - [SMALL_STATE(1046)] = 71703, - [SMALL_STATE(1047)] = 71749, - [SMALL_STATE(1048)] = 71799, - [SMALL_STATE(1049)] = 71879, - [SMALL_STATE(1050)] = 71943, - [SMALL_STATE(1051)] = 71989, - [SMALL_STATE(1052)] = 72035, - [SMALL_STATE(1053)] = 72085, - [SMALL_STATE(1054)] = 72134, - [SMALL_STATE(1055)] = 72189, - [SMALL_STATE(1056)] = 72234, - [SMALL_STATE(1057)] = 72283, - [SMALL_STATE(1058)] = 72332, - [SMALL_STATE(1059)] = 72387, - [SMALL_STATE(1060)] = 72456, - [SMALL_STATE(1061)] = 72525, - [SMALL_STATE(1062)] = 72572, - [SMALL_STATE(1063)] = 72649, - [SMALL_STATE(1064)] = 72700, - [SMALL_STATE(1065)] = 72755, - [SMALL_STATE(1066)] = 72802, - [SMALL_STATE(1067)] = 72847, - [SMALL_STATE(1068)] = 72892, - [SMALL_STATE(1069)] = 72937, - [SMALL_STATE(1070)] = 72982, - [SMALL_STATE(1071)] = 73029, - [SMALL_STATE(1072)] = 73092, - [SMALL_STATE(1073)] = 73153, - [SMALL_STATE(1074)] = 73218, - [SMALL_STATE(1075)] = 73263, - [SMALL_STATE(1076)] = 73332, - [SMALL_STATE(1077)] = 73377, - [SMALL_STATE(1078)] = 73432, - [SMALL_STATE(1079)] = 73477, - [SMALL_STATE(1080)] = 73522, - [SMALL_STATE(1081)] = 73567, - [SMALL_STATE(1082)] = 73612, - [SMALL_STATE(1083)] = 73657, - [SMALL_STATE(1084)] = 73724, - [SMALL_STATE(1085)] = 73783, - [SMALL_STATE(1086)] = 73828, - [SMALL_STATE(1087)] = 73873, - [SMALL_STATE(1088)] = 73918, - [SMALL_STATE(1089)] = 73963, - [SMALL_STATE(1090)] = 74012, - [SMALL_STATE(1091)] = 74061, - [SMALL_STATE(1092)] = 74110, - [SMALL_STATE(1093)] = 74179, - [SMALL_STATE(1094)] = 74248, - [SMALL_STATE(1095)] = 74303, - [SMALL_STATE(1096)] = 74352, - [SMALL_STATE(1097)] = 74397, - [SMALL_STATE(1098)] = 74442, - [SMALL_STATE(1099)] = 74487, - [SMALL_STATE(1100)] = 74532, - [SMALL_STATE(1101)] = 74577, - [SMALL_STATE(1102)] = 74646, - [SMALL_STATE(1103)] = 74691, - [SMALL_STATE(1104)] = 74736, - [SMALL_STATE(1105)] = 74797, - [SMALL_STATE(1106)] = 74842, - [SMALL_STATE(1107)] = 74887, - [SMALL_STATE(1108)] = 74936, - [SMALL_STATE(1109)] = 74985, - [SMALL_STATE(1110)] = 75030, - [SMALL_STATE(1111)] = 75079, - [SMALL_STATE(1112)] = 75128, - [SMALL_STATE(1113)] = 75183, - [SMALL_STATE(1114)] = 75228, - [SMALL_STATE(1115)] = 75287, - [SMALL_STATE(1116)] = 75334, - [SMALL_STATE(1117)] = 75381, - [SMALL_STATE(1118)] = 75428, - [SMALL_STATE(1119)] = 75473, - [SMALL_STATE(1120)] = 75542, - [SMALL_STATE(1121)] = 75611, - [SMALL_STATE(1122)] = 75656, - [SMALL_STATE(1123)] = 75701, - [SMALL_STATE(1124)] = 75746, - [SMALL_STATE(1125)] = 75813, - [SMALL_STATE(1126)] = 75878, - [SMALL_STATE(1127)] = 75923, - [SMALL_STATE(1128)] = 75968, - [SMALL_STATE(1129)] = 76023, - [SMALL_STATE(1130)] = 76084, - [SMALL_STATE(1131)] = 76139, - [SMALL_STATE(1132)] = 76208, - [SMALL_STATE(1133)] = 76263, - [SMALL_STATE(1134)] = 76318, - [SMALL_STATE(1135)] = 76377, - [SMALL_STATE(1136)] = 76432, - [SMALL_STATE(1137)] = 76487, - [SMALL_STATE(1138)] = 76550, - [SMALL_STATE(1139)] = 76595, - [SMALL_STATE(1140)] = 76662, - [SMALL_STATE(1141)] = 76713, - [SMALL_STATE(1142)] = 76778, - [SMALL_STATE(1143)] = 76827, - [SMALL_STATE(1144)] = 76890, - [SMALL_STATE(1145)] = 76945, - [SMALL_STATE(1146)] = 77008, - [SMALL_STATE(1147)] = 77073, - [SMALL_STATE(1148)] = 77140, - [SMALL_STATE(1149)] = 77199, - [SMALL_STATE(1150)] = 77268, - [SMALL_STATE(1151)] = 77323, - [SMALL_STATE(1152)] = 77378, - [SMALL_STATE(1153)] = 77447, - [SMALL_STATE(1154)] = 77508, - [SMALL_STATE(1155)] = 77563, - [SMALL_STATE(1156)] = 77632, - [SMALL_STATE(1157)] = 77677, - [SMALL_STATE(1158)] = 77728, - [SMALL_STATE(1159)] = 77779, - [SMALL_STATE(1160)] = 77830, - [SMALL_STATE(1161)] = 77875, - [SMALL_STATE(1162)] = 77920, - [SMALL_STATE(1163)] = 77964, - [SMALL_STATE(1164)] = 78008, - [SMALL_STATE(1165)] = 78052, - [SMALL_STATE(1166)] = 78096, - [SMALL_STATE(1167)] = 78140, - [SMALL_STATE(1168)] = 78184, - [SMALL_STATE(1169)] = 78228, - [SMALL_STATE(1170)] = 78272, - [SMALL_STATE(1171)] = 78320, - [SMALL_STATE(1172)] = 78364, - [SMALL_STATE(1173)] = 78408, - [SMALL_STATE(1174)] = 78454, - [SMALL_STATE(1175)] = 78498, - [SMALL_STATE(1176)] = 78542, - [SMALL_STATE(1177)] = 78586, - [SMALL_STATE(1178)] = 78630, - [SMALL_STATE(1179)] = 78676, - [SMALL_STATE(1180)] = 78722, - [SMALL_STATE(1181)] = 78768, - [SMALL_STATE(1182)] = 78812, - [SMALL_STATE(1183)] = 78860, - [SMALL_STATE(1184)] = 78908, - [SMALL_STATE(1185)] = 78954, - [SMALL_STATE(1186)] = 78998, - [SMALL_STATE(1187)] = 79044, - [SMALL_STATE(1188)] = 79120, - [SMALL_STATE(1189)] = 79166, - [SMALL_STATE(1190)] = 79234, - [SMALL_STATE(1191)] = 79302, - [SMALL_STATE(1192)] = 79346, - [SMALL_STATE(1193)] = 79394, - [SMALL_STATE(1194)] = 79438, - [SMALL_STATE(1195)] = 79484, - [SMALL_STATE(1196)] = 79528, - [SMALL_STATE(1197)] = 79572, - [SMALL_STATE(1198)] = 79616, - [SMALL_STATE(1199)] = 79660, - [SMALL_STATE(1200)] = 79704, - [SMALL_STATE(1201)] = 79748, - [SMALL_STATE(1202)] = 79792, - [SMALL_STATE(1203)] = 79840, - [SMALL_STATE(1204)] = 79888, - [SMALL_STATE(1205)] = 79932, - [SMALL_STATE(1206)] = 79976, - [SMALL_STATE(1207)] = 80024, - [SMALL_STATE(1208)] = 80068, - [SMALL_STATE(1209)] = 80112, - [SMALL_STATE(1210)] = 80156, - [SMALL_STATE(1211)] = 80218, - [SMALL_STATE(1212)] = 80282, - [SMALL_STATE(1213)] = 80348, - [SMALL_STATE(1214)] = 80406, - [SMALL_STATE(1215)] = 80460, - [SMALL_STATE(1216)] = 80528, - [SMALL_STATE(1217)] = 80588, - [SMALL_STATE(1218)] = 80632, - [SMALL_STATE(1219)] = 80686, - [SMALL_STATE(1220)] = 80730, - [SMALL_STATE(1221)] = 80774, - [SMALL_STATE(1222)] = 80818, - [SMALL_STATE(1223)] = 80862, - [SMALL_STATE(1224)] = 80906, - [SMALL_STATE(1225)] = 80950, - [SMALL_STATE(1226)] = 80994, - [SMALL_STATE(1227)] = 81038, - [SMALL_STATE(1228)] = 81086, - [SMALL_STATE(1229)] = 81132, - [SMALL_STATE(1230)] = 81180, - [SMALL_STATE(1231)] = 81226, - [SMALL_STATE(1232)] = 81270, - [SMALL_STATE(1233)] = 81316, - [SMALL_STATE(1234)] = 81366, - [SMALL_STATE(1235)] = 81412, - [SMALL_STATE(1236)] = 81458, - [SMALL_STATE(1237)] = 81502, - [SMALL_STATE(1238)] = 81546, - [SMALL_STATE(1239)] = 81592, - [SMALL_STATE(1240)] = 81636, - [SMALL_STATE(1241)] = 81680, - [SMALL_STATE(1242)] = 81728, - [SMALL_STATE(1243)] = 81774, - [SMALL_STATE(1244)] = 81818, - [SMALL_STATE(1245)] = 81866, - [SMALL_STATE(1246)] = 81910, - [SMALL_STATE(1247)] = 81954, - [SMALL_STATE(1248)] = 81998, - [SMALL_STATE(1249)] = 82046, - [SMALL_STATE(1250)] = 82090, - [SMALL_STATE(1251)] = 82134, - [SMALL_STATE(1252)] = 82178, - [SMALL_STATE(1253)] = 82222, - [SMALL_STATE(1254)] = 82266, - [SMALL_STATE(1255)] = 82310, - [SMALL_STATE(1256)] = 82354, - [SMALL_STATE(1257)] = 82398, - [SMALL_STATE(1258)] = 82442, - [SMALL_STATE(1259)] = 82486, - [SMALL_STATE(1260)] = 82540, - [SMALL_STATE(1261)] = 82584, - [SMALL_STATE(1262)] = 82638, - [SMALL_STATE(1263)] = 82686, - [SMALL_STATE(1264)] = 82734, - [SMALL_STATE(1265)] = 82782, - [SMALL_STATE(1266)] = 82830, - [SMALL_STATE(1267)] = 82874, - [SMALL_STATE(1268)] = 82924, - [SMALL_STATE(1269)] = 82968, - [SMALL_STATE(1270)] = 83012, - [SMALL_STATE(1271)] = 83088, - [SMALL_STATE(1272)] = 83132, - [SMALL_STATE(1273)] = 83176, - [SMALL_STATE(1274)] = 83220, - [SMALL_STATE(1275)] = 83264, - [SMALL_STATE(1276)] = 83308, - [SMALL_STATE(1277)] = 83352, - [SMALL_STATE(1278)] = 83400, - [SMALL_STATE(1279)] = 83444, - [SMALL_STATE(1280)] = 83488, - [SMALL_STATE(1281)] = 83532, - [SMALL_STATE(1282)] = 83576, - [SMALL_STATE(1283)] = 83620, - [SMALL_STATE(1284)] = 83668, - [SMALL_STATE(1285)] = 83744, - [SMALL_STATE(1286)] = 83788, - [SMALL_STATE(1287)] = 83834, - [SMALL_STATE(1288)] = 83880, - [SMALL_STATE(1289)] = 83923, - [SMALL_STATE(1290)] = 83966, - [SMALL_STATE(1291)] = 84013, - [SMALL_STATE(1292)] = 84056, - [SMALL_STATE(1293)] = 84103, - [SMALL_STATE(1294)] = 84150, - [SMALL_STATE(1295)] = 84195, - [SMALL_STATE(1296)] = 84238, - [SMALL_STATE(1297)] = 84283, - [SMALL_STATE(1298)] = 84328, - [SMALL_STATE(1299)] = 84371, - [SMALL_STATE(1300)] = 84414, - [SMALL_STATE(1301)] = 84457, - [SMALL_STATE(1302)] = 84500, - [SMALL_STATE(1303)] = 84543, - [SMALL_STATE(1304)] = 84586, - [SMALL_STATE(1305)] = 84631, - [SMALL_STATE(1306)] = 84674, - [SMALL_STATE(1307)] = 84717, - [SMALL_STATE(1308)] = 84760, - [SMALL_STATE(1309)] = 84803, - [SMALL_STATE(1310)] = 84846, - [SMALL_STATE(1311)] = 84889, - [SMALL_STATE(1312)] = 84932, - [SMALL_STATE(1313)] = 84975, - [SMALL_STATE(1314)] = 85018, - [SMALL_STATE(1315)] = 85061, - [SMALL_STATE(1316)] = 85104, - [SMALL_STATE(1317)] = 85147, - [SMALL_STATE(1318)] = 85190, - [SMALL_STATE(1319)] = 85233, - [SMALL_STATE(1320)] = 85276, - [SMALL_STATE(1321)] = 85319, - [SMALL_STATE(1322)] = 85362, - [SMALL_STATE(1323)] = 85405, - [SMALL_STATE(1324)] = 85448, - [SMALL_STATE(1325)] = 85491, - [SMALL_STATE(1326)] = 85534, - [SMALL_STATE(1327)] = 85577, - [SMALL_STATE(1328)] = 85620, - [SMALL_STATE(1329)] = 85663, - [SMALL_STATE(1330)] = 85706, - [SMALL_STATE(1331)] = 85749, - [SMALL_STATE(1332)] = 85792, - [SMALL_STATE(1333)] = 85835, - [SMALL_STATE(1334)] = 85878, - [SMALL_STATE(1335)] = 85921, - [SMALL_STATE(1336)] = 85964, - [SMALL_STATE(1337)] = 86015, - [SMALL_STATE(1338)] = 86058, - [SMALL_STATE(1339)] = 86101, - [SMALL_STATE(1340)] = 86152, - [SMALL_STATE(1341)] = 86195, - [SMALL_STATE(1342)] = 86238, - [SMALL_STATE(1343)] = 86281, - [SMALL_STATE(1344)] = 86324, - [SMALL_STATE(1345)] = 86367, - [SMALL_STATE(1346)] = 86410, - [SMALL_STATE(1347)] = 86453, - [SMALL_STATE(1348)] = 86496, - [SMALL_STATE(1349)] = 86539, - [SMALL_STATE(1350)] = 86584, - [SMALL_STATE(1351)] = 86627, - [SMALL_STATE(1352)] = 86670, - [SMALL_STATE(1353)] = 86713, - [SMALL_STATE(1354)] = 86756, - [SMALL_STATE(1355)] = 86799, - [SMALL_STATE(1356)] = 86842, - [SMALL_STATE(1357)] = 86885, - [SMALL_STATE(1358)] = 86928, - [SMALL_STATE(1359)] = 86971, - [SMALL_STATE(1360)] = 87014, - [SMALL_STATE(1361)] = 87057, - [SMALL_STATE(1362)] = 87100, - [SMALL_STATE(1363)] = 87143, - [SMALL_STATE(1364)] = 87186, - [SMALL_STATE(1365)] = 87229, - [SMALL_STATE(1366)] = 87272, - [SMALL_STATE(1367)] = 87315, - [SMALL_STATE(1368)] = 87358, - [SMALL_STATE(1369)] = 87401, - [SMALL_STATE(1370)] = 87444, - [SMALL_STATE(1371)] = 87487, - [SMALL_STATE(1372)] = 87530, - [SMALL_STATE(1373)] = 87573, - [SMALL_STATE(1374)] = 87616, - [SMALL_STATE(1375)] = 87659, - [SMALL_STATE(1376)] = 87704, - [SMALL_STATE(1377)] = 87749, - [SMALL_STATE(1378)] = 87794, - [SMALL_STATE(1379)] = 87837, - [SMALL_STATE(1380)] = 87882, - [SMALL_STATE(1381)] = 87925, - [SMALL_STATE(1382)] = 87968, - [SMALL_STATE(1383)] = 88011, - [SMALL_STATE(1384)] = 88058, - [SMALL_STATE(1385)] = 88101, - [SMALL_STATE(1386)] = 88144, - [SMALL_STATE(1387)] = 88187, - [SMALL_STATE(1388)] = 88230, - [SMALL_STATE(1389)] = 88273, - [SMALL_STATE(1390)] = 88320, - [SMALL_STATE(1391)] = 88367, - [SMALL_STATE(1392)] = 88412, - [SMALL_STATE(1393)] = 88459, - [SMALL_STATE(1394)] = 88502, - [SMALL_STATE(1395)] = 88549, - [SMALL_STATE(1396)] = 88592, - [SMALL_STATE(1397)] = 88635, - [SMALL_STATE(1398)] = 88678, - [SMALL_STATE(1399)] = 88721, - [SMALL_STATE(1400)] = 88764, - [SMALL_STATE(1401)] = 88807, - [SMALL_STATE(1402)] = 88850, - [SMALL_STATE(1403)] = 88893, - [SMALL_STATE(1404)] = 88940, - [SMALL_STATE(1405)] = 88983, - [SMALL_STATE(1406)] = 89030, - [SMALL_STATE(1407)] = 89075, - [SMALL_STATE(1408)] = 89118, - [SMALL_STATE(1409)] = 89161, - [SMALL_STATE(1410)] = 89204, - [SMALL_STATE(1411)] = 89247, - [SMALL_STATE(1412)] = 89290, - [SMALL_STATE(1413)] = 89335, - [SMALL_STATE(1414)] = 89378, - [SMALL_STATE(1415)] = 89421, - [SMALL_STATE(1416)] = 89464, - [SMALL_STATE(1417)] = 89507, - [SMALL_STATE(1418)] = 89550, - [SMALL_STATE(1419)] = 89595, - [SMALL_STATE(1420)] = 89638, - [SMALL_STATE(1421)] = 89681, - [SMALL_STATE(1422)] = 89724, - [SMALL_STATE(1423)] = 89769, - [SMALL_STATE(1424)] = 89812, - [SMALL_STATE(1425)] = 89859, - [SMALL_STATE(1426)] = 89902, - [SMALL_STATE(1427)] = 89945, - [SMALL_STATE(1428)] = 89988, - [SMALL_STATE(1429)] = 90035, - [SMALL_STATE(1430)] = 90078, - [SMALL_STATE(1431)] = 90125, - [SMALL_STATE(1432)] = 90172, - [SMALL_STATE(1433)] = 90215, - [SMALL_STATE(1434)] = 90258, - [SMALL_STATE(1435)] = 90301, - [SMALL_STATE(1436)] = 90344, - [SMALL_STATE(1437)] = 90387, - [SMALL_STATE(1438)] = 90430, - [SMALL_STATE(1439)] = 90473, - [SMALL_STATE(1440)] = 90518, - [SMALL_STATE(1441)] = 90561, - [SMALL_STATE(1442)] = 90604, - [SMALL_STATE(1443)] = 90651, - [SMALL_STATE(1444)] = 90696, - [SMALL_STATE(1445)] = 90741, - [SMALL_STATE(1446)] = 90784, - [SMALL_STATE(1447)] = 90827, - [SMALL_STATE(1448)] = 90870, - [SMALL_STATE(1449)] = 90913, - [SMALL_STATE(1450)] = 90958, - [SMALL_STATE(1451)] = 91003, - [SMALL_STATE(1452)] = 91047, - [SMALL_STATE(1453)] = 91089, - [SMALL_STATE(1454)] = 91131, - [SMALL_STATE(1455)] = 91173, - [SMALL_STATE(1456)] = 91217, - [SMALL_STATE(1457)] = 91261, - [SMALL_STATE(1458)] = 91305, - [SMALL_STATE(1459)] = 91351, - [SMALL_STATE(1460)] = 91397, - [SMALL_STATE(1461)] = 91439, - [SMALL_STATE(1462)] = 91481, - [SMALL_STATE(1463)] = 91523, - [SMALL_STATE(1464)] = 91569, - [SMALL_STATE(1465)] = 91613, - [SMALL_STATE(1466)] = 91655, - [SMALL_STATE(1467)] = 91699, - [SMALL_STATE(1468)] = 91741, - [SMALL_STATE(1469)] = 91785, - [SMALL_STATE(1470)] = 91827, - [SMALL_STATE(1471)] = 91871, - [SMALL_STATE(1472)] = 91915, - [SMALL_STATE(1473)] = 91963, - [SMALL_STATE(1474)] = 92005, - [SMALL_STATE(1475)] = 92047, - [SMALL_STATE(1476)] = 92089, - [SMALL_STATE(1477)] = 92131, - [SMALL_STATE(1478)] = 92173, - [SMALL_STATE(1479)] = 92215, - [SMALL_STATE(1480)] = 92257, - [SMALL_STATE(1481)] = 92299, - [SMALL_STATE(1482)] = 92341, - [SMALL_STATE(1483)] = 92383, - [SMALL_STATE(1484)] = 92425, - [SMALL_STATE(1485)] = 92467, - [SMALL_STATE(1486)] = 92509, - [SMALL_STATE(1487)] = 92551, - [SMALL_STATE(1488)] = 92601, - [SMALL_STATE(1489)] = 92643, - [SMALL_STATE(1490)] = 92685, - [SMALL_STATE(1491)] = 92727, - [SMALL_STATE(1492)] = 92769, - [SMALL_STATE(1493)] = 92811, - [SMALL_STATE(1494)] = 92853, - [SMALL_STATE(1495)] = 92895, - [SMALL_STATE(1496)] = 92937, - [SMALL_STATE(1497)] = 92979, - [SMALL_STATE(1498)] = 93021, - [SMALL_STATE(1499)] = 93062, - [SMALL_STATE(1500)] = 93105, - [SMALL_STATE(1501)] = 93148, - [SMALL_STATE(1502)] = 93189, - [SMALL_STATE(1503)] = 93232, - [SMALL_STATE(1504)] = 93275, - [SMALL_STATE(1505)] = 93316, - [SMALL_STATE(1506)] = 93357, - [SMALL_STATE(1507)] = 93398, - [SMALL_STATE(1508)] = 93441, - [SMALL_STATE(1509)] = 93484, - [SMALL_STATE(1510)] = 93527, - [SMALL_STATE(1511)] = 93570, - [SMALL_STATE(1512)] = 93613, - [SMALL_STATE(1513)] = 93654, - [SMALL_STATE(1514)] = 93695, - [SMALL_STATE(1515)] = 93736, - [SMALL_STATE(1516)] = 93777, - [SMALL_STATE(1517)] = 93818, - [SMALL_STATE(1518)] = 93860, - [SMALL_STATE(1519)] = 93902, - [SMALL_STATE(1520)] = 93934, - [SMALL_STATE(1521)] = 93966, - [SMALL_STATE(1522)] = 93998, - [SMALL_STATE(1523)] = 94030, - [SMALL_STATE(1524)] = 94062, - [SMALL_STATE(1525)] = 94094, - [SMALL_STATE(1526)] = 94134, - [SMALL_STATE(1527)] = 94174, - [SMALL_STATE(1528)] = 94214, - [SMALL_STATE(1529)] = 94254, - [SMALL_STATE(1530)] = 94291, - [SMALL_STATE(1531)] = 94330, - [SMALL_STATE(1532)] = 94369, - [SMALL_STATE(1533)] = 94406, - [SMALL_STATE(1534)] = 94445, - [SMALL_STATE(1535)] = 94484, - [SMALL_STATE(1536)] = 94522, - [SMALL_STATE(1537)] = 94552, - [SMALL_STATE(1538)] = 94582, - [SMALL_STATE(1539)] = 94620, - [SMALL_STATE(1540)] = 94650, - [SMALL_STATE(1541)] = 94688, - [SMALL_STATE(1542)] = 94718, - [SMALL_STATE(1543)] = 94748, - [SMALL_STATE(1544)] = 94778, - [SMALL_STATE(1545)] = 94808, - [SMALL_STATE(1546)] = 94846, - [SMALL_STATE(1547)] = 94876, - [SMALL_STATE(1548)] = 94905, - [SMALL_STATE(1549)] = 94934, - [SMALL_STATE(1550)] = 94963, - [SMALL_STATE(1551)] = 94992, - [SMALL_STATE(1552)] = 95021, - [SMALL_STATE(1553)] = 95050, - [SMALL_STATE(1554)] = 95075, - [SMALL_STATE(1555)] = 95122, - [SMALL_STATE(1556)] = 95169, - [SMALL_STATE(1557)] = 95216, - [SMALL_STATE(1558)] = 95263, - [SMALL_STATE(1559)] = 95292, - [SMALL_STATE(1560)] = 95339, - [SMALL_STATE(1561)] = 95364, - [SMALL_STATE(1562)] = 95393, - [SMALL_STATE(1563)] = 95440, - [SMALL_STATE(1564)] = 95469, - [SMALL_STATE(1565)] = 95498, - [SMALL_STATE(1566)] = 95527, - [SMALL_STATE(1567)] = 95556, - [SMALL_STATE(1568)] = 95585, - [SMALL_STATE(1569)] = 95614, - [SMALL_STATE(1570)] = 95643, - [SMALL_STATE(1571)] = 95672, - [SMALL_STATE(1572)] = 95697, - [SMALL_STATE(1573)] = 95744, - [SMALL_STATE(1574)] = 95773, - [SMALL_STATE(1575)] = 95798, - [SMALL_STATE(1576)] = 95827, - [SMALL_STATE(1577)] = 95856, - [SMALL_STATE(1578)] = 95903, - [SMALL_STATE(1579)] = 95950, - [SMALL_STATE(1580)] = 95979, - [SMALL_STATE(1581)] = 96008, - [SMALL_STATE(1582)] = 96037, - [SMALL_STATE(1583)] = 96066, - [SMALL_STATE(1584)] = 96095, - [SMALL_STATE(1585)] = 96142, - [SMALL_STATE(1586)] = 96188, - [SMALL_STATE(1587)] = 96234, - [SMALL_STATE(1588)] = 96280, - [SMALL_STATE(1589)] = 96304, - [SMALL_STATE(1590)] = 96350, - [SMALL_STATE(1591)] = 96374, - [SMALL_STATE(1592)] = 96420, - [SMALL_STATE(1593)] = 96466, - [SMALL_STATE(1594)] = 96512, - [SMALL_STATE(1595)] = 96558, - [SMALL_STATE(1596)] = 96582, - [SMALL_STATE(1597)] = 96614, - [SMALL_STATE(1598)] = 96660, - [SMALL_STATE(1599)] = 96706, - [SMALL_STATE(1600)] = 96730, - [SMALL_STATE(1601)] = 96776, - [SMALL_STATE(1602)] = 96808, - [SMALL_STATE(1603)] = 96838, - [SMALL_STATE(1604)] = 96866, - [SMALL_STATE(1605)] = 96894, - [SMALL_STATE(1606)] = 96937, - [SMALL_STATE(1607)] = 96977, - [SMALL_STATE(1608)] = 97003, - [SMALL_STATE(1609)] = 97043, - [SMALL_STATE(1610)] = 97083, - [SMALL_STATE(1611)] = 97123, - [SMALL_STATE(1612)] = 97160, - [SMALL_STATE(1613)] = 97197, - [SMALL_STATE(1614)] = 97222, - [SMALL_STATE(1615)] = 97249, - [SMALL_STATE(1616)] = 97270, - [SMALL_STATE(1617)] = 97311, - [SMALL_STATE(1618)] = 97330, - [SMALL_STATE(1619)] = 97349, - [SMALL_STATE(1620)] = 97372, - [SMALL_STATE(1621)] = 97399, - [SMALL_STATE(1622)] = 97426, - [SMALL_STATE(1623)] = 97467, - [SMALL_STATE(1624)] = 97508, - [SMALL_STATE(1625)] = 97549, - [SMALL_STATE(1626)] = 97590, - [SMALL_STATE(1627)] = 97631, - [SMALL_STATE(1628)] = 97672, - [SMALL_STATE(1629)] = 97713, - [SMALL_STATE(1630)] = 97732, - [SMALL_STATE(1631)] = 97770, - [SMALL_STATE(1632)] = 97808, - [SMALL_STATE(1633)] = 97846, - [SMALL_STATE(1634)] = 97884, - [SMALL_STATE(1635)] = 97916, - [SMALL_STATE(1636)] = 97954, - [SMALL_STATE(1637)] = 97992, - [SMALL_STATE(1638)] = 98030, - [SMALL_STATE(1639)] = 98068, - [SMALL_STATE(1640)] = 98106, - [SMALL_STATE(1641)] = 98144, - [SMALL_STATE(1642)] = 98182, - [SMALL_STATE(1643)] = 98220, - [SMALL_STATE(1644)] = 98258, - [SMALL_STATE(1645)] = 98296, - [SMALL_STATE(1646)] = 98334, - [SMALL_STATE(1647)] = 98372, - [SMALL_STATE(1648)] = 98410, - [SMALL_STATE(1649)] = 98448, - [SMALL_STATE(1650)] = 98486, - [SMALL_STATE(1651)] = 98524, - [SMALL_STATE(1652)] = 98562, - [SMALL_STATE(1653)] = 98600, - [SMALL_STATE(1654)] = 98638, - [SMALL_STATE(1655)] = 98676, - [SMALL_STATE(1656)] = 98714, - [SMALL_STATE(1657)] = 98737, - [SMALL_STATE(1658)] = 98766, - [SMALL_STATE(1659)] = 98795, - [SMALL_STATE(1660)] = 98818, - [SMALL_STATE(1661)] = 98843, - [SMALL_STATE(1662)] = 98872, - [SMALL_STATE(1663)] = 98901, - [SMALL_STATE(1664)] = 98922, - [SMALL_STATE(1665)] = 98939, - [SMALL_STATE(1666)] = 98958, - [SMALL_STATE(1667)] = 98987, - [SMALL_STATE(1668)] = 99016, - [SMALL_STATE(1669)] = 99045, - [SMALL_STATE(1670)] = 99070, - [SMALL_STATE(1671)] = 99099, - [SMALL_STATE(1672)] = 99124, - [SMALL_STATE(1673)] = 99153, - [SMALL_STATE(1674)] = 99178, - [SMALL_STATE(1675)] = 99207, - [SMALL_STATE(1676)] = 99236, - [SMALL_STATE(1677)] = 99261, - [SMALL_STATE(1678)] = 99278, - [SMALL_STATE(1679)] = 99307, - [SMALL_STATE(1680)] = 99336, - [SMALL_STATE(1681)] = 99353, - [SMALL_STATE(1682)] = 99374, - [SMALL_STATE(1683)] = 99391, - [SMALL_STATE(1684)] = 99410, - [SMALL_STATE(1685)] = 99439, - [SMALL_STATE(1686)] = 99468, - [SMALL_STATE(1687)] = 99493, - [SMALL_STATE(1688)] = 99522, - [SMALL_STATE(1689)] = 99539, - [SMALL_STATE(1690)] = 99556, - [SMALL_STATE(1691)] = 99585, - [SMALL_STATE(1692)] = 99610, - [SMALL_STATE(1693)] = 99635, - [SMALL_STATE(1694)] = 99664, - [SMALL_STATE(1695)] = 99693, - [SMALL_STATE(1696)] = 99722, - [SMALL_STATE(1697)] = 99751, - [SMALL_STATE(1698)] = 99769, - [SMALL_STATE(1699)] = 99793, - [SMALL_STATE(1700)] = 99817, - [SMALL_STATE(1701)] = 99839, - [SMALL_STATE(1702)] = 99861, - [SMALL_STATE(1703)] = 99881, - [SMALL_STATE(1704)] = 99897, - [SMALL_STATE(1705)] = 99915, - [SMALL_STATE(1706)] = 99945, - [SMALL_STATE(1707)] = 99963, - [SMALL_STATE(1708)] = 99979, - [SMALL_STATE(1709)] = 100001, - [SMALL_STATE(1710)] = 100025, - [SMALL_STATE(1711)] = 100041, - [SMALL_STATE(1712)] = 100059, - [SMALL_STATE(1713)] = 100077, - [SMALL_STATE(1714)] = 100101, - [SMALL_STATE(1715)] = 100121, - [SMALL_STATE(1716)] = 100145, - [SMALL_STATE(1717)] = 100167, - [SMALL_STATE(1718)] = 100191, - [SMALL_STATE(1719)] = 100211, - [SMALL_STATE(1720)] = 100227, - [SMALL_STATE(1721)] = 100251, - [SMALL_STATE(1722)] = 100275, - [SMALL_STATE(1723)] = 100299, - [SMALL_STATE(1724)] = 100323, - [SMALL_STATE(1725)] = 100347, - [SMALL_STATE(1726)] = 100363, - [SMALL_STATE(1727)] = 100387, - [SMALL_STATE(1728)] = 100403, - [SMALL_STATE(1729)] = 100427, - [SMALL_STATE(1730)] = 100448, - [SMALL_STATE(1731)] = 100477, - [SMALL_STATE(1732)] = 100500, - [SMALL_STATE(1733)] = 100529, - [SMALL_STATE(1734)] = 100558, - [SMALL_STATE(1735)] = 100575, - [SMALL_STATE(1736)] = 100600, - [SMALL_STATE(1737)] = 100627, - [SMALL_STATE(1738)] = 100654, - [SMALL_STATE(1739)] = 100679, - [SMALL_STATE(1740)] = 100702, - [SMALL_STATE(1741)] = 100727, - [SMALL_STATE(1742)] = 100752, - [SMALL_STATE(1743)] = 100781, - [SMALL_STATE(1744)] = 100798, - [SMALL_STATE(1745)] = 100823, - [SMALL_STATE(1746)] = 100844, - [SMALL_STATE(1747)] = 100861, - [SMALL_STATE(1748)] = 100882, - [SMALL_STATE(1749)] = 100899, - [SMALL_STATE(1750)] = 100918, - [SMALL_STATE(1751)] = 100947, - [SMALL_STATE(1752)] = 100974, - [SMALL_STATE(1753)] = 101001, - [SMALL_STATE(1754)] = 101018, - [SMALL_STATE(1755)] = 101039, - [SMALL_STATE(1756)] = 101066, - [SMALL_STATE(1757)] = 101087, - [SMALL_STATE(1758)] = 101116, - [SMALL_STATE(1759)] = 101139, - [SMALL_STATE(1760)] = 101162, - [SMALL_STATE(1761)] = 101183, - [SMALL_STATE(1762)] = 101210, - [SMALL_STATE(1763)] = 101239, - [SMALL_STATE(1764)] = 101268, - [SMALL_STATE(1765)] = 101291, - [SMALL_STATE(1766)] = 101314, - [SMALL_STATE(1767)] = 101331, - [SMALL_STATE(1768)] = 101354, - [SMALL_STATE(1769)] = 101383, - [SMALL_STATE(1770)] = 101404, - [SMALL_STATE(1771)] = 101431, - [SMALL_STATE(1772)] = 101452, - [SMALL_STATE(1773)] = 101471, - [SMALL_STATE(1774)] = 101492, - [SMALL_STATE(1775)] = 101521, - [SMALL_STATE(1776)] = 101542, - [SMALL_STATE(1777)] = 101563, - [SMALL_STATE(1778)] = 101586, - [SMALL_STATE(1779)] = 101607, - [SMALL_STATE(1780)] = 101636, - [SMALL_STATE(1781)] = 101663, - [SMALL_STATE(1782)] = 101684, - [SMALL_STATE(1783)] = 101709, - [SMALL_STATE(1784)] = 101735, - [SMALL_STATE(1785)] = 101761, - [SMALL_STATE(1786)] = 101785, - [SMALL_STATE(1787)] = 101811, - [SMALL_STATE(1788)] = 101837, - [SMALL_STATE(1789)] = 101863, - [SMALL_STATE(1790)] = 101885, - [SMALL_STATE(1791)] = 101905, - [SMALL_STATE(1792)] = 101927, - [SMALL_STATE(1793)] = 101953, - [SMALL_STATE(1794)] = 101979, - [SMALL_STATE(1795)] = 102001, - [SMALL_STATE(1796)] = 102023, - [SMALL_STATE(1797)] = 102045, - [SMALL_STATE(1798)] = 102067, - [SMALL_STATE(1799)] = 102089, - [SMALL_STATE(1800)] = 102109, - [SMALL_STATE(1801)] = 102135, - [SMALL_STATE(1802)] = 102157, - [SMALL_STATE(1803)] = 102183, - [SMALL_STATE(1804)] = 102209, - [SMALL_STATE(1805)] = 102233, - [SMALL_STATE(1806)] = 102255, - [SMALL_STATE(1807)] = 102281, - [SMALL_STATE(1808)] = 102307, - [SMALL_STATE(1809)] = 102329, - [SMALL_STATE(1810)] = 102355, - [SMALL_STATE(1811)] = 102381, - [SMALL_STATE(1812)] = 102403, - [SMALL_STATE(1813)] = 102429, - [SMALL_STATE(1814)] = 102455, - [SMALL_STATE(1815)] = 102479, - [SMALL_STATE(1816)] = 102503, - [SMALL_STATE(1817)] = 102529, - [SMALL_STATE(1818)] = 102555, - [SMALL_STATE(1819)] = 102575, - [SMALL_STATE(1820)] = 102597, - [SMALL_STATE(1821)] = 102619, - [SMALL_STATE(1822)] = 102638, - [SMALL_STATE(1823)] = 102651, - [SMALL_STATE(1824)] = 102668, - [SMALL_STATE(1825)] = 102681, - [SMALL_STATE(1826)] = 102700, - [SMALL_STATE(1827)] = 102721, - [SMALL_STATE(1828)] = 102734, - [SMALL_STATE(1829)] = 102751, - [SMALL_STATE(1830)] = 102772, - [SMALL_STATE(1831)] = 102789, - [SMALL_STATE(1832)] = 102802, - [SMALL_STATE(1833)] = 102823, - [SMALL_STATE(1834)] = 102836, - [SMALL_STATE(1835)] = 102857, - [SMALL_STATE(1836)] = 102878, - [SMALL_STATE(1837)] = 102899, - [SMALL_STATE(1838)] = 102920, - [SMALL_STATE(1839)] = 102941, - [SMALL_STATE(1840)] = 102962, - [SMALL_STATE(1841)] = 102983, - [SMALL_STATE(1842)] = 103000, - [SMALL_STATE(1843)] = 103017, - [SMALL_STATE(1844)] = 103034, - [SMALL_STATE(1845)] = 103055, - [SMALL_STATE(1846)] = 103068, - [SMALL_STATE(1847)] = 103089, - [SMALL_STATE(1848)] = 103102, - [SMALL_STATE(1849)] = 103123, - [SMALL_STATE(1850)] = 103144, - [SMALL_STATE(1851)] = 103161, - [SMALL_STATE(1852)] = 103182, - [SMALL_STATE(1853)] = 103203, - [SMALL_STATE(1854)] = 103224, - [SMALL_STATE(1855)] = 103247, - [SMALL_STATE(1856)] = 103264, - [SMALL_STATE(1857)] = 103287, - [SMALL_STATE(1858)] = 103308, - [SMALL_STATE(1859)] = 103325, - [SMALL_STATE(1860)] = 103342, - [SMALL_STATE(1861)] = 103363, - [SMALL_STATE(1862)] = 103376, - [SMALL_STATE(1863)] = 103399, - [SMALL_STATE(1864)] = 103416, - [SMALL_STATE(1865)] = 103439, - [SMALL_STATE(1866)] = 103456, - [SMALL_STATE(1867)] = 103477, - [SMALL_STATE(1868)] = 103494, - [SMALL_STATE(1869)] = 103513, - [SMALL_STATE(1870)] = 103526, - [SMALL_STATE(1871)] = 103549, - [SMALL_STATE(1872)] = 103570, - [SMALL_STATE(1873)] = 103587, - [SMALL_STATE(1874)] = 103604, - [SMALL_STATE(1875)] = 103617, - [SMALL_STATE(1876)] = 103634, - [SMALL_STATE(1877)] = 103651, - [SMALL_STATE(1878)] = 103664, - [SMALL_STATE(1879)] = 103685, - [SMALL_STATE(1880)] = 103706, - [SMALL_STATE(1881)] = 103727, - [SMALL_STATE(1882)] = 103744, - [SMALL_STATE(1883)] = 103761, - [SMALL_STATE(1884)] = 103778, - [SMALL_STATE(1885)] = 103799, - [SMALL_STATE(1886)] = 103820, - [SMALL_STATE(1887)] = 103837, - [SMALL_STATE(1888)] = 103858, - [SMALL_STATE(1889)] = 103875, - [SMALL_STATE(1890)] = 103888, - [SMALL_STATE(1891)] = 103909, - [SMALL_STATE(1892)] = 103930, - [SMALL_STATE(1893)] = 103943, - [SMALL_STATE(1894)] = 103960, - [SMALL_STATE(1895)] = 103977, - [SMALL_STATE(1896)] = 104000, - [SMALL_STATE(1897)] = 104017, - [SMALL_STATE(1898)] = 104030, - [SMALL_STATE(1899)] = 104047, - [SMALL_STATE(1900)] = 104068, - [SMALL_STATE(1901)] = 104085, - [SMALL_STATE(1902)] = 104106, - [SMALL_STATE(1903)] = 104123, - [SMALL_STATE(1904)] = 104140, - [SMALL_STATE(1905)] = 104163, - [SMALL_STATE(1906)] = 104180, - [SMALL_STATE(1907)] = 104201, - [SMALL_STATE(1908)] = 104218, - [SMALL_STATE(1909)] = 104235, - [SMALL_STATE(1910)] = 104248, - [SMALL_STATE(1911)] = 104261, - [SMALL_STATE(1912)] = 104273, - [SMALL_STATE(1913)] = 104285, - [SMALL_STATE(1914)] = 104305, - [SMALL_STATE(1915)] = 104321, - [SMALL_STATE(1916)] = 104333, - [SMALL_STATE(1917)] = 104353, - [SMALL_STATE(1918)] = 104371, - [SMALL_STATE(1919)] = 104383, - [SMALL_STATE(1920)] = 104401, - [SMALL_STATE(1921)] = 104413, - [SMALL_STATE(1922)] = 104431, - [SMALL_STATE(1923)] = 104443, - [SMALL_STATE(1924)] = 104463, - [SMALL_STATE(1925)] = 104483, - [SMALL_STATE(1926)] = 104503, - [SMALL_STATE(1927)] = 104521, - [SMALL_STATE(1928)] = 104541, - [SMALL_STATE(1929)] = 104553, - [SMALL_STATE(1930)] = 104573, - [SMALL_STATE(1931)] = 104593, - [SMALL_STATE(1932)] = 104613, - [SMALL_STATE(1933)] = 104629, - [SMALL_STATE(1934)] = 104645, - [SMALL_STATE(1935)] = 104665, - [SMALL_STATE(1936)] = 104685, - [SMALL_STATE(1937)] = 104705, - [SMALL_STATE(1938)] = 104725, - [SMALL_STATE(1939)] = 104745, - [SMALL_STATE(1940)] = 104761, - [SMALL_STATE(1941)] = 104781, - [SMALL_STATE(1942)] = 104801, - [SMALL_STATE(1943)] = 104813, - [SMALL_STATE(1944)] = 104825, - [SMALL_STATE(1945)] = 104845, - [SMALL_STATE(1946)] = 104865, - [SMALL_STATE(1947)] = 104885, - [SMALL_STATE(1948)] = 104897, - [SMALL_STATE(1949)] = 104909, - [SMALL_STATE(1950)] = 104929, - [SMALL_STATE(1951)] = 104941, - [SMALL_STATE(1952)] = 104961, - [SMALL_STATE(1953)] = 104979, - [SMALL_STATE(1954)] = 104997, - [SMALL_STATE(1955)] = 105017, - [SMALL_STATE(1956)] = 105029, - [SMALL_STATE(1957)] = 105049, - [SMALL_STATE(1958)] = 105069, - [SMALL_STATE(1959)] = 105081, - [SMALL_STATE(1960)] = 105093, - [SMALL_STATE(1961)] = 105105, - [SMALL_STATE(1962)] = 105125, - [SMALL_STATE(1963)] = 105145, - [SMALL_STATE(1964)] = 105157, - [SMALL_STATE(1965)] = 105173, - [SMALL_STATE(1966)] = 105193, - [SMALL_STATE(1967)] = 105209, - [SMALL_STATE(1968)] = 105229, - [SMALL_STATE(1969)] = 105249, - [SMALL_STATE(1970)] = 105267, - [SMALL_STATE(1971)] = 105285, - [SMALL_STATE(1972)] = 105297, - [SMALL_STATE(1973)] = 105309, - [SMALL_STATE(1974)] = 105321, - [SMALL_STATE(1975)] = 105333, - [SMALL_STATE(1976)] = 105351, - [SMALL_STATE(1977)] = 105363, - [SMALL_STATE(1978)] = 105375, - [SMALL_STATE(1979)] = 105387, - [SMALL_STATE(1980)] = 105407, - [SMALL_STATE(1981)] = 105419, - [SMALL_STATE(1982)] = 105439, - [SMALL_STATE(1983)] = 105451, - [SMALL_STATE(1984)] = 105463, - [SMALL_STATE(1985)] = 105478, - [SMALL_STATE(1986)] = 105495, - [SMALL_STATE(1987)] = 105510, - [SMALL_STATE(1988)] = 105525, - [SMALL_STATE(1989)] = 105540, - [SMALL_STATE(1990)] = 105555, - [SMALL_STATE(1991)] = 105572, - [SMALL_STATE(1992)] = 105587, - [SMALL_STATE(1993)] = 105602, - [SMALL_STATE(1994)] = 105617, - [SMALL_STATE(1995)] = 105632, - [SMALL_STATE(1996)] = 105649, - [SMALL_STATE(1997)] = 105666, - [SMALL_STATE(1998)] = 105681, - [SMALL_STATE(1999)] = 105692, - [SMALL_STATE(2000)] = 105707, - [SMALL_STATE(2001)] = 105724, - [SMALL_STATE(2002)] = 105741, - [SMALL_STATE(2003)] = 105756, - [SMALL_STATE(2004)] = 105773, - [SMALL_STATE(2005)] = 105790, - [SMALL_STATE(2006)] = 105807, - [SMALL_STATE(2007)] = 105822, - [SMALL_STATE(2008)] = 105833, - [SMALL_STATE(2009)] = 105850, - [SMALL_STATE(2010)] = 105865, - [SMALL_STATE(2011)] = 105882, - [SMALL_STATE(2012)] = 105899, - [SMALL_STATE(2013)] = 105916, - [SMALL_STATE(2014)] = 105933, - [SMALL_STATE(2015)] = 105950, - [SMALL_STATE(2016)] = 105967, - [SMALL_STATE(2017)] = 105982, - [SMALL_STATE(2018)] = 105997, - [SMALL_STATE(2019)] = 106012, - [SMALL_STATE(2020)] = 106027, - [SMALL_STATE(2021)] = 106040, - [SMALL_STATE(2022)] = 106055, - [SMALL_STATE(2023)] = 106070, - [SMALL_STATE(2024)] = 106087, - [SMALL_STATE(2025)] = 106104, - [SMALL_STATE(2026)] = 106121, - [SMALL_STATE(2027)] = 106138, - [SMALL_STATE(2028)] = 106152, - [SMALL_STATE(2029)] = 106166, - [SMALL_STATE(2030)] = 106180, - [SMALL_STATE(2031)] = 106194, - [SMALL_STATE(2032)] = 106208, - [SMALL_STATE(2033)] = 106222, - [SMALL_STATE(2034)] = 106236, - [SMALL_STATE(2035)] = 106250, - [SMALL_STATE(2036)] = 106264, - [SMALL_STATE(2037)] = 106278, - [SMALL_STATE(2038)] = 106292, - [SMALL_STATE(2039)] = 106306, - [SMALL_STATE(2040)] = 106320, - [SMALL_STATE(2041)] = 106334, - [SMALL_STATE(2042)] = 106348, - [SMALL_STATE(2043)] = 106362, - [SMALL_STATE(2044)] = 106376, - [SMALL_STATE(2045)] = 106390, - [SMALL_STATE(2046)] = 106404, - [SMALL_STATE(2047)] = 106418, - [SMALL_STATE(2048)] = 106432, - [SMALL_STATE(2049)] = 106446, - [SMALL_STATE(2050)] = 106458, - [SMALL_STATE(2051)] = 106470, - [SMALL_STATE(2052)] = 106484, - [SMALL_STATE(2053)] = 106498, - [SMALL_STATE(2054)] = 106512, - [SMALL_STATE(2055)] = 106524, - [SMALL_STATE(2056)] = 106538, - [SMALL_STATE(2057)] = 106552, - [SMALL_STATE(2058)] = 106566, - [SMALL_STATE(2059)] = 106580, - [SMALL_STATE(2060)] = 106594, - [SMALL_STATE(2061)] = 106608, - [SMALL_STATE(2062)] = 106622, - [SMALL_STATE(2063)] = 106636, - [SMALL_STATE(2064)] = 106650, - [SMALL_STATE(2065)] = 106664, - [SMALL_STATE(2066)] = 106676, - [SMALL_STATE(2067)] = 106690, - [SMALL_STATE(2068)] = 106704, - [SMALL_STATE(2069)] = 106718, - [SMALL_STATE(2070)] = 106732, - [SMALL_STATE(2071)] = 106746, - [SMALL_STATE(2072)] = 106760, - [SMALL_STATE(2073)] = 106774, - [SMALL_STATE(2074)] = 106788, - [SMALL_STATE(2075)] = 106802, - [SMALL_STATE(2076)] = 106812, - [SMALL_STATE(2077)] = 106826, - [SMALL_STATE(2078)] = 106840, - [SMALL_STATE(2079)] = 106850, - [SMALL_STATE(2080)] = 106864, - [SMALL_STATE(2081)] = 106878, - [SMALL_STATE(2082)] = 106892, - [SMALL_STATE(2083)] = 106904, - [SMALL_STATE(2084)] = 106918, - [SMALL_STATE(2085)] = 106932, - [SMALL_STATE(2086)] = 106946, - [SMALL_STATE(2087)] = 106960, - [SMALL_STATE(2088)] = 106974, - [SMALL_STATE(2089)] = 106988, - [SMALL_STATE(2090)] = 107000, - [SMALL_STATE(2091)] = 107014, - [SMALL_STATE(2092)] = 107028, - [SMALL_STATE(2093)] = 107042, - [SMALL_STATE(2094)] = 107056, - [SMALL_STATE(2095)] = 107070, - [SMALL_STATE(2096)] = 107082, - [SMALL_STATE(2097)] = 107096, - [SMALL_STATE(2098)] = 107110, - [SMALL_STATE(2099)] = 107124, - [SMALL_STATE(2100)] = 107138, - [SMALL_STATE(2101)] = 107152, - [SMALL_STATE(2102)] = 107166, - [SMALL_STATE(2103)] = 107180, - [SMALL_STATE(2104)] = 107194, - [SMALL_STATE(2105)] = 107206, - [SMALL_STATE(2106)] = 107220, - [SMALL_STATE(2107)] = 107234, - [SMALL_STATE(2108)] = 107246, - [SMALL_STATE(2109)] = 107260, - [SMALL_STATE(2110)] = 107274, - [SMALL_STATE(2111)] = 107288, - [SMALL_STATE(2112)] = 107302, - [SMALL_STATE(2113)] = 107316, - [SMALL_STATE(2114)] = 107330, - [SMALL_STATE(2115)] = 107344, - [SMALL_STATE(2116)] = 107358, - [SMALL_STATE(2117)] = 107372, - [SMALL_STATE(2118)] = 107386, - [SMALL_STATE(2119)] = 107400, - [SMALL_STATE(2120)] = 107414, - [SMALL_STATE(2121)] = 107424, - [SMALL_STATE(2122)] = 107438, - [SMALL_STATE(2123)] = 107452, - [SMALL_STATE(2124)] = 107466, - [SMALL_STATE(2125)] = 107480, - [SMALL_STATE(2126)] = 107494, - [SMALL_STATE(2127)] = 107504, - [SMALL_STATE(2128)] = 107518, - [SMALL_STATE(2129)] = 107532, - [SMALL_STATE(2130)] = 107546, - [SMALL_STATE(2131)] = 107558, - [SMALL_STATE(2132)] = 107572, - [SMALL_STATE(2133)] = 107584, - [SMALL_STATE(2134)] = 107598, - [SMALL_STATE(2135)] = 107612, - [SMALL_STATE(2136)] = 107626, - [SMALL_STATE(2137)] = 107640, - [SMALL_STATE(2138)] = 107654, - [SMALL_STATE(2139)] = 107668, - [SMALL_STATE(2140)] = 107682, - [SMALL_STATE(2141)] = 107696, - [SMALL_STATE(2142)] = 107708, - [SMALL_STATE(2143)] = 107722, - [SMALL_STATE(2144)] = 107736, - [SMALL_STATE(2145)] = 107750, - [SMALL_STATE(2146)] = 107764, - [SMALL_STATE(2147)] = 107778, - [SMALL_STATE(2148)] = 107792, - [SMALL_STATE(2149)] = 107806, - [SMALL_STATE(2150)] = 107820, - [SMALL_STATE(2151)] = 107834, - [SMALL_STATE(2152)] = 107848, - [SMALL_STATE(2153)] = 107860, - [SMALL_STATE(2154)] = 107874, - [SMALL_STATE(2155)] = 107888, - [SMALL_STATE(2156)] = 107900, - [SMALL_STATE(2157)] = 107914, - [SMALL_STATE(2158)] = 107928, - [SMALL_STATE(2159)] = 107942, - [SMALL_STATE(2160)] = 107956, - [SMALL_STATE(2161)] = 107970, - [SMALL_STATE(2162)] = 107984, - [SMALL_STATE(2163)] = 107998, - [SMALL_STATE(2164)] = 108012, - [SMALL_STATE(2165)] = 108026, - [SMALL_STATE(2166)] = 108040, - [SMALL_STATE(2167)] = 108054, - [SMALL_STATE(2168)] = 108068, - [SMALL_STATE(2169)] = 108082, - [SMALL_STATE(2170)] = 108096, - [SMALL_STATE(2171)] = 108110, - [SMALL_STATE(2172)] = 108124, - [SMALL_STATE(2173)] = 108138, - [SMALL_STATE(2174)] = 108152, - [SMALL_STATE(2175)] = 108166, - [SMALL_STATE(2176)] = 108180, - [SMALL_STATE(2177)] = 108194, - [SMALL_STATE(2178)] = 108206, - [SMALL_STATE(2179)] = 108220, - [SMALL_STATE(2180)] = 108234, - [SMALL_STATE(2181)] = 108246, - [SMALL_STATE(2182)] = 108260, - [SMALL_STATE(2183)] = 108274, - [SMALL_STATE(2184)] = 108288, - [SMALL_STATE(2185)] = 108302, - [SMALL_STATE(2186)] = 108316, - [SMALL_STATE(2187)] = 108330, - [SMALL_STATE(2188)] = 108344, - [SMALL_STATE(2189)] = 108358, - [SMALL_STATE(2190)] = 108372, - [SMALL_STATE(2191)] = 108386, - [SMALL_STATE(2192)] = 108400, - [SMALL_STATE(2193)] = 108414, - [SMALL_STATE(2194)] = 108428, - [SMALL_STATE(2195)] = 108442, - [SMALL_STATE(2196)] = 108452, - [SMALL_STATE(2197)] = 108466, - [SMALL_STATE(2198)] = 108480, - [SMALL_STATE(2199)] = 108494, - [SMALL_STATE(2200)] = 108508, - [SMALL_STATE(2201)] = 108522, - [SMALL_STATE(2202)] = 108536, - [SMALL_STATE(2203)] = 108550, - [SMALL_STATE(2204)] = 108564, - [SMALL_STATE(2205)] = 108578, - [SMALL_STATE(2206)] = 108592, - [SMALL_STATE(2207)] = 108602, - [SMALL_STATE(2208)] = 108616, - [SMALL_STATE(2209)] = 108630, - [SMALL_STATE(2210)] = 108644, - [SMALL_STATE(2211)] = 108656, - [SMALL_STATE(2212)] = 108670, - [SMALL_STATE(2213)] = 108684, - [SMALL_STATE(2214)] = 108698, - [SMALL_STATE(2215)] = 108712, - [SMALL_STATE(2216)] = 108726, - [SMALL_STATE(2217)] = 108740, - [SMALL_STATE(2218)] = 108754, - [SMALL_STATE(2219)] = 108768, - [SMALL_STATE(2220)] = 108782, - [SMALL_STATE(2221)] = 108796, - [SMALL_STATE(2222)] = 108810, - [SMALL_STATE(2223)] = 108824, - [SMALL_STATE(2224)] = 108836, - [SMALL_STATE(2225)] = 108850, - [SMALL_STATE(2226)] = 108864, - [SMALL_STATE(2227)] = 108878, - [SMALL_STATE(2228)] = 108892, - [SMALL_STATE(2229)] = 108906, - [SMALL_STATE(2230)] = 108918, - [SMALL_STATE(2231)] = 108928, - [SMALL_STATE(2232)] = 108940, - [SMALL_STATE(2233)] = 108954, - [SMALL_STATE(2234)] = 108966, - [SMALL_STATE(2235)] = 108980, - [SMALL_STATE(2236)] = 108994, - [SMALL_STATE(2237)] = 109004, - [SMALL_STATE(2238)] = 109018, - [SMALL_STATE(2239)] = 109032, - [SMALL_STATE(2240)] = 109046, - [SMALL_STATE(2241)] = 109060, - [SMALL_STATE(2242)] = 109074, - [SMALL_STATE(2243)] = 109088, - [SMALL_STATE(2244)] = 109102, - [SMALL_STATE(2245)] = 109116, - [SMALL_STATE(2246)] = 109130, - [SMALL_STATE(2247)] = 109144, - [SMALL_STATE(2248)] = 109158, - [SMALL_STATE(2249)] = 109172, - [SMALL_STATE(2250)] = 109186, - [SMALL_STATE(2251)] = 109200, - [SMALL_STATE(2252)] = 109214, - [SMALL_STATE(2253)] = 109228, - [SMALL_STATE(2254)] = 109239, - [SMALL_STATE(2255)] = 109248, - [SMALL_STATE(2256)] = 109257, - [SMALL_STATE(2257)] = 109266, - [SMALL_STATE(2258)] = 109275, - [SMALL_STATE(2259)] = 109284, - [SMALL_STATE(2260)] = 109293, - [SMALL_STATE(2261)] = 109304, - [SMALL_STATE(2262)] = 109315, - [SMALL_STATE(2263)] = 109324, - [SMALL_STATE(2264)] = 109333, - [SMALL_STATE(2265)] = 109342, - [SMALL_STATE(2266)] = 109351, - [SMALL_STATE(2267)] = 109360, - [SMALL_STATE(2268)] = 109369, - [SMALL_STATE(2269)] = 109378, - [SMALL_STATE(2270)] = 109387, - [SMALL_STATE(2271)] = 109398, - [SMALL_STATE(2272)] = 109407, - [SMALL_STATE(2273)] = 109416, - [SMALL_STATE(2274)] = 109425, - [SMALL_STATE(2275)] = 109434, - [SMALL_STATE(2276)] = 109443, - [SMALL_STATE(2277)] = 109452, - [SMALL_STATE(2278)] = 109461, - [SMALL_STATE(2279)] = 109470, - [SMALL_STATE(2280)] = 109479, - [SMALL_STATE(2281)] = 109488, - [SMALL_STATE(2282)] = 109499, - [SMALL_STATE(2283)] = 109508, - [SMALL_STATE(2284)] = 109517, - [SMALL_STATE(2285)] = 109526, - [SMALL_STATE(2286)] = 109535, - [SMALL_STATE(2287)] = 109544, - [SMALL_STATE(2288)] = 109553, - [SMALL_STATE(2289)] = 109562, - [SMALL_STATE(2290)] = 109571, - [SMALL_STATE(2291)] = 109580, - [SMALL_STATE(2292)] = 109589, - [SMALL_STATE(2293)] = 109600, - [SMALL_STATE(2294)] = 109609, - [SMALL_STATE(2295)] = 109618, - [SMALL_STATE(2296)] = 109627, - [SMALL_STATE(2297)] = 109638, - [SMALL_STATE(2298)] = 109649, - [SMALL_STATE(2299)] = 109658, - [SMALL_STATE(2300)] = 109667, - [SMALL_STATE(2301)] = 109676, - [SMALL_STATE(2302)] = 109685, - [SMALL_STATE(2303)] = 109694, - [SMALL_STATE(2304)] = 109703, - [SMALL_STATE(2305)] = 109712, - [SMALL_STATE(2306)] = 109723, - [SMALL_STATE(2307)] = 109732, - [SMALL_STATE(2308)] = 109743, - [SMALL_STATE(2309)] = 109752, - [SMALL_STATE(2310)] = 109761, - [SMALL_STATE(2311)] = 109772, - [SMALL_STATE(2312)] = 109781, - [SMALL_STATE(2313)] = 109790, - [SMALL_STATE(2314)] = 109801, - [SMALL_STATE(2315)] = 109810, - [SMALL_STATE(2316)] = 109819, - [SMALL_STATE(2317)] = 109828, - [SMALL_STATE(2318)] = 109837, - [SMALL_STATE(2319)] = 109846, - [SMALL_STATE(2320)] = 109855, - [SMALL_STATE(2321)] = 109864, - [SMALL_STATE(2322)] = 109873, - [SMALL_STATE(2323)] = 109882, - [SMALL_STATE(2324)] = 109891, - [SMALL_STATE(2325)] = 109900, - [SMALL_STATE(2326)] = 109909, - [SMALL_STATE(2327)] = 109918, - [SMALL_STATE(2328)] = 109927, - [SMALL_STATE(2329)] = 109936, - [SMALL_STATE(2330)] = 109945, - [SMALL_STATE(2331)] = 109954, - [SMALL_STATE(2332)] = 109963, - [SMALL_STATE(2333)] = 109972, - [SMALL_STATE(2334)] = 109981, - [SMALL_STATE(2335)] = 109990, - [SMALL_STATE(2336)] = 109999, - [SMALL_STATE(2337)] = 110008, - [SMALL_STATE(2338)] = 110017, - [SMALL_STATE(2339)] = 110026, - [SMALL_STATE(2340)] = 110035, - [SMALL_STATE(2341)] = 110044, - [SMALL_STATE(2342)] = 110053, - [SMALL_STATE(2343)] = 110062, - [SMALL_STATE(2344)] = 110071, - [SMALL_STATE(2345)] = 110080, - [SMALL_STATE(2346)] = 110091, - [SMALL_STATE(2347)] = 110099, - [SMALL_STATE(2348)] = 110107, - [SMALL_STATE(2349)] = 110115, - [SMALL_STATE(2350)] = 110123, - [SMALL_STATE(2351)] = 110131, - [SMALL_STATE(2352)] = 110139, - [SMALL_STATE(2353)] = 110147, - [SMALL_STATE(2354)] = 110155, - [SMALL_STATE(2355)] = 110163, - [SMALL_STATE(2356)] = 110171, - [SMALL_STATE(2357)] = 110179, - [SMALL_STATE(2358)] = 110187, - [SMALL_STATE(2359)] = 110195, - [SMALL_STATE(2360)] = 110203, - [SMALL_STATE(2361)] = 110211, - [SMALL_STATE(2362)] = 110219, - [SMALL_STATE(2363)] = 110227, - [SMALL_STATE(2364)] = 110235, - [SMALL_STATE(2365)] = 110243, - [SMALL_STATE(2366)] = 110251, - [SMALL_STATE(2367)] = 110259, - [SMALL_STATE(2368)] = 110267, - [SMALL_STATE(2369)] = 110275, - [SMALL_STATE(2370)] = 110283, - [SMALL_STATE(2371)] = 110291, - [SMALL_STATE(2372)] = 110299, - [SMALL_STATE(2373)] = 110307, - [SMALL_STATE(2374)] = 110315, - [SMALL_STATE(2375)] = 110323, - [SMALL_STATE(2376)] = 110331, - [SMALL_STATE(2377)] = 110339, - [SMALL_STATE(2378)] = 110347, - [SMALL_STATE(2379)] = 110355, - [SMALL_STATE(2380)] = 110363, - [SMALL_STATE(2381)] = 110371, - [SMALL_STATE(2382)] = 110379, - [SMALL_STATE(2383)] = 110387, - [SMALL_STATE(2384)] = 110395, - [SMALL_STATE(2385)] = 110403, - [SMALL_STATE(2386)] = 110411, - [SMALL_STATE(2387)] = 110419, - [SMALL_STATE(2388)] = 110427, - [SMALL_STATE(2389)] = 110435, - [SMALL_STATE(2390)] = 110443, - [SMALL_STATE(2391)] = 110451, - [SMALL_STATE(2392)] = 110459, - [SMALL_STATE(2393)] = 110467, - [SMALL_STATE(2394)] = 110475, - [SMALL_STATE(2395)] = 110483, - [SMALL_STATE(2396)] = 110491, - [SMALL_STATE(2397)] = 110499, - [SMALL_STATE(2398)] = 110507, - [SMALL_STATE(2399)] = 110515, - [SMALL_STATE(2400)] = 110523, - [SMALL_STATE(2401)] = 110531, - [SMALL_STATE(2402)] = 110539, - [SMALL_STATE(2403)] = 110547, - [SMALL_STATE(2404)] = 110555, - [SMALL_STATE(2405)] = 110563, - [SMALL_STATE(2406)] = 110571, - [SMALL_STATE(2407)] = 110579, - [SMALL_STATE(2408)] = 110587, - [SMALL_STATE(2409)] = 110595, - [SMALL_STATE(2410)] = 110603, - [SMALL_STATE(2411)] = 110611, - [SMALL_STATE(2412)] = 110619, - [SMALL_STATE(2413)] = 110627, - [SMALL_STATE(2414)] = 110635, - [SMALL_STATE(2415)] = 110643, - [SMALL_STATE(2416)] = 110651, - [SMALL_STATE(2417)] = 110659, - [SMALL_STATE(2418)] = 110667, - [SMALL_STATE(2419)] = 110675, - [SMALL_STATE(2420)] = 110683, - [SMALL_STATE(2421)] = 110691, - [SMALL_STATE(2422)] = 110699, - [SMALL_STATE(2423)] = 110707, - [SMALL_STATE(2424)] = 110715, - [SMALL_STATE(2425)] = 110723, - [SMALL_STATE(2426)] = 110731, - [SMALL_STATE(2427)] = 110739, - [SMALL_STATE(2428)] = 110747, - [SMALL_STATE(2429)] = 110755, - [SMALL_STATE(2430)] = 110763, - [SMALL_STATE(2431)] = 110771, - [SMALL_STATE(2432)] = 110779, - [SMALL_STATE(2433)] = 110787, - [SMALL_STATE(2434)] = 110795, - [SMALL_STATE(2435)] = 110803, - [SMALL_STATE(2436)] = 110811, - [SMALL_STATE(2437)] = 110819, - [SMALL_STATE(2438)] = 110827, - [SMALL_STATE(2439)] = 110835, - [SMALL_STATE(2440)] = 110843, - [SMALL_STATE(2441)] = 110851, - [SMALL_STATE(2442)] = 110859, - [SMALL_STATE(2443)] = 110867, - [SMALL_STATE(2444)] = 110875, - [SMALL_STATE(2445)] = 110883, - [SMALL_STATE(2446)] = 110891, - [SMALL_STATE(2447)] = 110899, - [SMALL_STATE(2448)] = 110907, - [SMALL_STATE(2449)] = 110915, - [SMALL_STATE(2450)] = 110923, - [SMALL_STATE(2451)] = 110931, - [SMALL_STATE(2452)] = 110939, - [SMALL_STATE(2453)] = 110947, - [SMALL_STATE(2454)] = 110955, - [SMALL_STATE(2455)] = 110963, - [SMALL_STATE(2456)] = 110971, - [SMALL_STATE(2457)] = 110979, - [SMALL_STATE(2458)] = 110987, - [SMALL_STATE(2459)] = 110995, - [SMALL_STATE(2460)] = 111003, - [SMALL_STATE(2461)] = 111011, - [SMALL_STATE(2462)] = 111019, - [SMALL_STATE(2463)] = 111027, - [SMALL_STATE(2464)] = 111035, - [SMALL_STATE(2465)] = 111043, - [SMALL_STATE(2466)] = 111051, - [SMALL_STATE(2467)] = 111059, - [SMALL_STATE(2468)] = 111067, - [SMALL_STATE(2469)] = 111075, - [SMALL_STATE(2470)] = 111083, - [SMALL_STATE(2471)] = 111091, - [SMALL_STATE(2472)] = 111099, - [SMALL_STATE(2473)] = 111107, - [SMALL_STATE(2474)] = 111115, - [SMALL_STATE(2475)] = 111123, - [SMALL_STATE(2476)] = 111131, - [SMALL_STATE(2477)] = 111139, - [SMALL_STATE(2478)] = 111147, - [SMALL_STATE(2479)] = 111155, - [SMALL_STATE(2480)] = 111163, - [SMALL_STATE(2481)] = 111171, - [SMALL_STATE(2482)] = 111179, - [SMALL_STATE(2483)] = 111187, - [SMALL_STATE(2484)] = 111195, - [SMALL_STATE(2485)] = 111203, - [SMALL_STATE(2486)] = 111211, - [SMALL_STATE(2487)] = 111219, - [SMALL_STATE(2488)] = 111227, - [SMALL_STATE(2489)] = 111235, - [SMALL_STATE(2490)] = 111243, - [SMALL_STATE(2491)] = 111251, - [SMALL_STATE(2492)] = 111259, - [SMALL_STATE(2493)] = 111267, - [SMALL_STATE(2494)] = 111275, - [SMALL_STATE(2495)] = 111283, - [SMALL_STATE(2496)] = 111291, - [SMALL_STATE(2497)] = 111299, - [SMALL_STATE(2498)] = 111307, - [SMALL_STATE(2499)] = 111315, - [SMALL_STATE(2500)] = 111323, - [SMALL_STATE(2501)] = 111331, - [SMALL_STATE(2502)] = 111339, - [SMALL_STATE(2503)] = 111347, - [SMALL_STATE(2504)] = 111355, - [SMALL_STATE(2505)] = 111363, - [SMALL_STATE(2506)] = 111371, - [SMALL_STATE(2507)] = 111379, - [SMALL_STATE(2508)] = 111387, - [SMALL_STATE(2509)] = 111395, - [SMALL_STATE(2510)] = 111403, - [SMALL_STATE(2511)] = 111411, - [SMALL_STATE(2512)] = 111419, - [SMALL_STATE(2513)] = 111427, - [SMALL_STATE(2514)] = 111435, - [SMALL_STATE(2515)] = 111443, - [SMALL_STATE(2516)] = 111451, - [SMALL_STATE(2517)] = 111459, - [SMALL_STATE(2518)] = 111467, - [SMALL_STATE(2519)] = 111475, - [SMALL_STATE(2520)] = 111483, - [SMALL_STATE(2521)] = 111491, - [SMALL_STATE(2522)] = 111499, - [SMALL_STATE(2523)] = 111507, - [SMALL_STATE(2524)] = 111515, - [SMALL_STATE(2525)] = 111523, - [SMALL_STATE(2526)] = 111531, - [SMALL_STATE(2527)] = 111539, - [SMALL_STATE(2528)] = 111547, - [SMALL_STATE(2529)] = 111555, - [SMALL_STATE(2530)] = 111563, - [SMALL_STATE(2531)] = 111571, - [SMALL_STATE(2532)] = 111579, - [SMALL_STATE(2533)] = 111587, - [SMALL_STATE(2534)] = 111595, - [SMALL_STATE(2535)] = 111603, - [SMALL_STATE(2536)] = 111611, - [SMALL_STATE(2537)] = 111619, - [SMALL_STATE(2538)] = 111627, - [SMALL_STATE(2539)] = 111635, - [SMALL_STATE(2540)] = 111643, - [SMALL_STATE(2541)] = 111651, - [SMALL_STATE(2542)] = 111659, + [SMALL_STATE(696)] = 49020, + [SMALL_STATE(697)] = 49075, + [SMALL_STATE(698)] = 49134, + [SMALL_STATE(699)] = 49193, + [SMALL_STATE(700)] = 49248, + [SMALL_STATE(701)] = 49307, + [SMALL_STATE(702)] = 49366, + [SMALL_STATE(703)] = 49425, + [SMALL_STATE(704)] = 49484, + [SMALL_STATE(705)] = 49543, + [SMALL_STATE(706)] = 49598, + [SMALL_STATE(707)] = 49657, + [SMALL_STATE(708)] = 49716, + [SMALL_STATE(709)] = 49775, + [SMALL_STATE(710)] = 49834, + [SMALL_STATE(711)] = 49889, + [SMALL_STATE(712)] = 49948, + [SMALL_STATE(713)] = 50007, + [SMALL_STATE(714)] = 50061, + [SMALL_STATE(715)] = 50153, + [SMALL_STATE(716)] = 50207, + [SMALL_STATE(717)] = 50261, + [SMALL_STATE(718)] = 50315, + [SMALL_STATE(719)] = 50407, + [SMALL_STATE(720)] = 50460, + [SMALL_STATE(721)] = 50513, + [SMALL_STATE(722)] = 50566, + [SMALL_STATE(723)] = 50655, + [SMALL_STATE(724)] = 50708, + [SMALL_STATE(725)] = 50761, + [SMALL_STATE(726)] = 50850, + [SMALL_STATE(727)] = 50939, + [SMALL_STATE(728)] = 50992, + [SMALL_STATE(729)] = 51045, + [SMALL_STATE(730)] = 51098, + [SMALL_STATE(731)] = 51151, + [SMALL_STATE(732)] = 51204, + [SMALL_STATE(733)] = 51257, + [SMALL_STATE(734)] = 51346, + [SMALL_STATE(735)] = 51399, + [SMALL_STATE(736)] = 51452, + [SMALL_STATE(737)] = 51541, + [SMALL_STATE(738)] = 51594, + [SMALL_STATE(739)] = 51647, + [SMALL_STATE(740)] = 51700, + [SMALL_STATE(741)] = 51753, + [SMALL_STATE(742)] = 51806, + [SMALL_STATE(743)] = 51859, + [SMALL_STATE(744)] = 51912, + [SMALL_STATE(745)] = 51965, + [SMALL_STATE(746)] = 52018, + [SMALL_STATE(747)] = 52071, + [SMALL_STATE(748)] = 52124, + [SMALL_STATE(749)] = 52213, + [SMALL_STATE(750)] = 52266, + [SMALL_STATE(751)] = 52355, + [SMALL_STATE(752)] = 52444, + [SMALL_STATE(753)] = 52497, + [SMALL_STATE(754)] = 52550, + [SMALL_STATE(755)] = 52603, + [SMALL_STATE(756)] = 52692, + [SMALL_STATE(757)] = 52745, + [SMALL_STATE(758)] = 52798, + [SMALL_STATE(759)] = 52851, + [SMALL_STATE(760)] = 52904, + [SMALL_STATE(761)] = 52957, + [SMALL_STATE(762)] = 53010, + [SMALL_STATE(763)] = 53063, + [SMALL_STATE(764)] = 53116, + [SMALL_STATE(765)] = 53169, + [SMALL_STATE(766)] = 53222, + [SMALL_STATE(767)] = 53275, + [SMALL_STATE(768)] = 53328, + [SMALL_STATE(769)] = 53381, + [SMALL_STATE(770)] = 53470, + [SMALL_STATE(771)] = 53523, + [SMALL_STATE(772)] = 53576, + [SMALL_STATE(773)] = 53665, + [SMALL_STATE(774)] = 53718, + [SMALL_STATE(775)] = 53807, + [SMALL_STATE(776)] = 53860, + [SMALL_STATE(777)] = 53913, + [SMALL_STATE(778)] = 53966, + [SMALL_STATE(779)] = 54019, + [SMALL_STATE(780)] = 54072, + [SMALL_STATE(781)] = 54125, + [SMALL_STATE(782)] = 54214, + [SMALL_STATE(783)] = 54267, + [SMALL_STATE(784)] = 54320, + [SMALL_STATE(785)] = 54373, + [SMALL_STATE(786)] = 54426, + [SMALL_STATE(787)] = 54479, + [SMALL_STATE(788)] = 54532, + [SMALL_STATE(789)] = 54585, + [SMALL_STATE(790)] = 54638, + [SMALL_STATE(791)] = 54691, + [SMALL_STATE(792)] = 54744, + [SMALL_STATE(793)] = 54797, + [SMALL_STATE(794)] = 54850, + [SMALL_STATE(795)] = 54903, + [SMALL_STATE(796)] = 54956, + [SMALL_STATE(797)] = 55009, + [SMALL_STATE(798)] = 55062, + [SMALL_STATE(799)] = 55115, + [SMALL_STATE(800)] = 55168, + [SMALL_STATE(801)] = 55221, + [SMALL_STATE(802)] = 55310, + [SMALL_STATE(803)] = 55363, + [SMALL_STATE(804)] = 55416, + [SMALL_STATE(805)] = 55469, + [SMALL_STATE(806)] = 55522, + [SMALL_STATE(807)] = 55575, + [SMALL_STATE(808)] = 55628, + [SMALL_STATE(809)] = 55681, + [SMALL_STATE(810)] = 55734, + [SMALL_STATE(811)] = 55787, + [SMALL_STATE(812)] = 55840, + [SMALL_STATE(813)] = 55893, + [SMALL_STATE(814)] = 55946, + [SMALL_STATE(815)] = 55999, + [SMALL_STATE(816)] = 56052, + [SMALL_STATE(817)] = 56105, + [SMALL_STATE(818)] = 56158, + [SMALL_STATE(819)] = 56211, + [SMALL_STATE(820)] = 56264, + [SMALL_STATE(821)] = 56317, + [SMALL_STATE(822)] = 56370, + [SMALL_STATE(823)] = 56423, + [SMALL_STATE(824)] = 56476, + [SMALL_STATE(825)] = 56529, + [SMALL_STATE(826)] = 56582, + [SMALL_STATE(827)] = 56635, + [SMALL_STATE(828)] = 56688, + [SMALL_STATE(829)] = 56741, + [SMALL_STATE(830)] = 56794, + [SMALL_STATE(831)] = 56847, + [SMALL_STATE(832)] = 56900, + [SMALL_STATE(833)] = 56953, + [SMALL_STATE(834)] = 57006, + [SMALL_STATE(835)] = 57095, + [SMALL_STATE(836)] = 57148, + [SMALL_STATE(837)] = 57237, + [SMALL_STATE(838)] = 57290, + [SMALL_STATE(839)] = 57343, + [SMALL_STATE(840)] = 57396, + [SMALL_STATE(841)] = 57449, + [SMALL_STATE(842)] = 57502, + [SMALL_STATE(843)] = 57555, + [SMALL_STATE(844)] = 57641, + [SMALL_STATE(845)] = 57727, + [SMALL_STATE(846)] = 57813, + [SMALL_STATE(847)] = 57899, + [SMALL_STATE(848)] = 57985, + [SMALL_STATE(849)] = 58071, + [SMALL_STATE(850)] = 58154, + [SMALL_STATE(851)] = 58237, + [SMALL_STATE(852)] = 58315, + [SMALL_STATE(853)] = 58393, + [SMALL_STATE(854)] = 58471, + [SMALL_STATE(855)] = 58549, + [SMALL_STATE(856)] = 58627, + [SMALL_STATE(857)] = 58705, + [SMALL_STATE(858)] = 58783, + [SMALL_STATE(859)] = 58861, + [SMALL_STATE(860)] = 58936, + [SMALL_STATE(861)] = 59011, + [SMALL_STATE(862)] = 59086, + [SMALL_STATE(863)] = 59161, + [SMALL_STATE(864)] = 59236, + [SMALL_STATE(865)] = 59315, + [SMALL_STATE(866)] = 59390, + [SMALL_STATE(867)] = 59465, + [SMALL_STATE(868)] = 59544, + [SMALL_STATE(869)] = 59619, + [SMALL_STATE(870)] = 59698, + [SMALL_STATE(871)] = 59773, + [SMALL_STATE(872)] = 59848, + [SMALL_STATE(873)] = 59923, + [SMALL_STATE(874)] = 59998, + [SMALL_STATE(875)] = 60077, + [SMALL_STATE(876)] = 60152, + [SMALL_STATE(877)] = 60227, + [SMALL_STATE(878)] = 60306, + [SMALL_STATE(879)] = 60381, + [SMALL_STATE(880)] = 60456, + [SMALL_STATE(881)] = 60531, + [SMALL_STATE(882)] = 60606, + [SMALL_STATE(883)] = 60681, + [SMALL_STATE(884)] = 60756, + [SMALL_STATE(885)] = 60831, + [SMALL_STATE(886)] = 60906, + [SMALL_STATE(887)] = 60981, + [SMALL_STATE(888)] = 61056, + [SMALL_STATE(889)] = 61131, + [SMALL_STATE(890)] = 61206, + [SMALL_STATE(891)] = 61281, + [SMALL_STATE(892)] = 61356, + [SMALL_STATE(893)] = 61431, + [SMALL_STATE(894)] = 61506, + [SMALL_STATE(895)] = 61581, + [SMALL_STATE(896)] = 61656, + [SMALL_STATE(897)] = 61731, + [SMALL_STATE(898)] = 61806, + [SMALL_STATE(899)] = 61881, + [SMALL_STATE(900)] = 61956, + [SMALL_STATE(901)] = 62031, + [SMALL_STATE(902)] = 62106, + [SMALL_STATE(903)] = 62181, + [SMALL_STATE(904)] = 62260, + [SMALL_STATE(905)] = 62335, + [SMALL_STATE(906)] = 62410, + [SMALL_STATE(907)] = 62489, + [SMALL_STATE(908)] = 62568, + [SMALL_STATE(909)] = 62643, + [SMALL_STATE(910)] = 62718, + [SMALL_STATE(911)] = 62793, + [SMALL_STATE(912)] = 62868, + [SMALL_STATE(913)] = 62943, + [SMALL_STATE(914)] = 63018, + [SMALL_STATE(915)] = 63093, + [SMALL_STATE(916)] = 63168, + [SMALL_STATE(917)] = 63243, + [SMALL_STATE(918)] = 63318, + [SMALL_STATE(919)] = 63393, + [SMALL_STATE(920)] = 63468, + [SMALL_STATE(921)] = 63547, + [SMALL_STATE(922)] = 63622, + [SMALL_STATE(923)] = 63697, + [SMALL_STATE(924)] = 63772, + [SMALL_STATE(925)] = 63847, + [SMALL_STATE(926)] = 63926, + [SMALL_STATE(927)] = 64001, + [SMALL_STATE(928)] = 64080, + [SMALL_STATE(929)] = 64155, + [SMALL_STATE(930)] = 64230, + [SMALL_STATE(931)] = 64305, + [SMALL_STATE(932)] = 64380, + [SMALL_STATE(933)] = 64455, + [SMALL_STATE(934)] = 64534, + [SMALL_STATE(935)] = 64609, + [SMALL_STATE(936)] = 64684, + [SMALL_STATE(937)] = 64763, + [SMALL_STATE(938)] = 64842, + [SMALL_STATE(939)] = 64921, + [SMALL_STATE(940)] = 65000, + [SMALL_STATE(941)] = 65075, + [SMALL_STATE(942)] = 65150, + [SMALL_STATE(943)] = 65229, + [SMALL_STATE(944)] = 65304, + [SMALL_STATE(945)] = 65379, + [SMALL_STATE(946)] = 65454, + [SMALL_STATE(947)] = 65529, + [SMALL_STATE(948)] = 65604, + [SMALL_STATE(949)] = 65679, + [SMALL_STATE(950)] = 65758, + [SMALL_STATE(951)] = 65833, + [SMALL_STATE(952)] = 65908, + [SMALL_STATE(953)] = 65983, + [SMALL_STATE(954)] = 66058, + [SMALL_STATE(955)] = 66133, + [SMALL_STATE(956)] = 66208, + [SMALL_STATE(957)] = 66283, + [SMALL_STATE(958)] = 66362, + [SMALL_STATE(959)] = 66437, + [SMALL_STATE(960)] = 66512, + [SMALL_STATE(961)] = 66587, + [SMALL_STATE(962)] = 66662, + [SMALL_STATE(963)] = 66737, + [SMALL_STATE(964)] = 66816, + [SMALL_STATE(965)] = 66891, + [SMALL_STATE(966)] = 66966, + [SMALL_STATE(967)] = 67041, + [SMALL_STATE(968)] = 67093, + [SMALL_STATE(969)] = 67145, + [SMALL_STATE(970)] = 67227, + [SMALL_STATE(971)] = 67279, + [SMALL_STATE(972)] = 67336, + [SMALL_STATE(973)] = 67417, + [SMALL_STATE(974)] = 67488, + [SMALL_STATE(975)] = 67559, + [SMALL_STATE(976)] = 67624, + [SMALL_STATE(977)] = 67695, + [SMALL_STATE(978)] = 67746, + [SMALL_STATE(979)] = 67797, + [SMALL_STATE(980)] = 67878, + [SMALL_STATE(981)] = 67935, + [SMALL_STATE(982)] = 67986, + [SMALL_STATE(983)] = 68053, + [SMALL_STATE(984)] = 68122, + [SMALL_STATE(985)] = 68183, + [SMALL_STATE(986)] = 68240, + [SMALL_STATE(987)] = 68303, + [SMALL_STATE(988)] = 68354, + [SMALL_STATE(989)] = 68411, + [SMALL_STATE(990)] = 68462, + [SMALL_STATE(991)] = 68513, + [SMALL_STATE(992)] = 68563, + [SMALL_STATE(993)] = 68613, + [SMALL_STATE(994)] = 68663, + [SMALL_STATE(995)] = 68713, + [SMALL_STATE(996)] = 68763, + [SMALL_STATE(997)] = 68819, + [SMALL_STATE(998)] = 68869, + [SMALL_STATE(999)] = 68947, + [SMALL_STATE(1000)] = 68993, + [SMALL_STATE(1001)] = 69041, + [SMALL_STATE(1002)] = 69089, + [SMALL_STATE(1003)] = 69149, + [SMALL_STATE(1004)] = 69199, + [SMALL_STATE(1005)] = 69261, + [SMALL_STATE(1006)] = 69309, + [SMALL_STATE(1007)] = 69389, + [SMALL_STATE(1008)] = 69439, + [SMALL_STATE(1009)] = 69519, + [SMALL_STATE(1010)] = 69569, + [SMALL_STATE(1011)] = 69649, + [SMALL_STATE(1012)] = 69699, + [SMALL_STATE(1013)] = 69745, + [SMALL_STATE(1014)] = 69815, + [SMALL_STATE(1015)] = 69861, + [SMALL_STATE(1016)] = 69907, + [SMALL_STATE(1017)] = 69963, + [SMALL_STATE(1018)] = 70009, + [SMALL_STATE(1019)] = 70055, + [SMALL_STATE(1020)] = 70111, + [SMALL_STATE(1021)] = 70181, + [SMALL_STATE(1022)] = 70251, + [SMALL_STATE(1023)] = 70307, + [SMALL_STATE(1024)] = 70353, + [SMALL_STATE(1025)] = 70399, + [SMALL_STATE(1026)] = 70465, + [SMALL_STATE(1027)] = 70533, + [SMALL_STATE(1028)] = 70601, + [SMALL_STATE(1029)] = 70661, + [SMALL_STATE(1030)] = 70727, + [SMALL_STATE(1031)] = 70783, + [SMALL_STATE(1032)] = 70863, + [SMALL_STATE(1033)] = 70933, + [SMALL_STATE(1034)] = 70997, + [SMALL_STATE(1035)] = 71047, + [SMALL_STATE(1036)] = 71109, + [SMALL_STATE(1037)] = 71165, + [SMALL_STATE(1038)] = 71211, + [SMALL_STATE(1039)] = 71275, + [SMALL_STATE(1040)] = 71325, + [SMALL_STATE(1041)] = 71381, + [SMALL_STATE(1042)] = 71437, + [SMALL_STATE(1043)] = 71507, + [SMALL_STATE(1044)] = 71577, + [SMALL_STATE(1045)] = 71624, + [SMALL_STATE(1046)] = 71669, + [SMALL_STATE(1047)] = 71714, + [SMALL_STATE(1048)] = 71759, + [SMALL_STATE(1049)] = 71814, + [SMALL_STATE(1050)] = 71875, + [SMALL_STATE(1051)] = 71920, + [SMALL_STATE(1052)] = 71989, + [SMALL_STATE(1053)] = 72044, + [SMALL_STATE(1054)] = 72103, + [SMALL_STATE(1055)] = 72148, + [SMALL_STATE(1056)] = 72215, + [SMALL_STATE(1057)] = 72284, + [SMALL_STATE(1058)] = 72353, + [SMALL_STATE(1059)] = 72398, + [SMALL_STATE(1060)] = 72463, + [SMALL_STATE(1061)] = 72514, + [SMALL_STATE(1062)] = 72565, + [SMALL_STATE(1063)] = 72616, + [SMALL_STATE(1064)] = 72661, + [SMALL_STATE(1065)] = 72706, + [SMALL_STATE(1066)] = 72751, + [SMALL_STATE(1067)] = 72814, + [SMALL_STATE(1068)] = 72859, + [SMALL_STATE(1069)] = 72922, + [SMALL_STATE(1070)] = 72987, + [SMALL_STATE(1071)] = 73054, + [SMALL_STATE(1072)] = 73113, + [SMALL_STATE(1073)] = 73168, + [SMALL_STATE(1074)] = 73237, + [SMALL_STATE(1075)] = 73298, + [SMALL_STATE(1076)] = 73353, + [SMALL_STATE(1077)] = 73398, + [SMALL_STATE(1078)] = 73443, + [SMALL_STATE(1079)] = 73498, + [SMALL_STATE(1080)] = 73561, + [SMALL_STATE(1081)] = 73630, + [SMALL_STATE(1082)] = 73695, + [SMALL_STATE(1083)] = 73750, + [SMALL_STATE(1084)] = 73827, + [SMALL_STATE(1085)] = 73872, + [SMALL_STATE(1086)] = 73941, + [SMALL_STATE(1087)] = 74010, + [SMALL_STATE(1088)] = 74079, + [SMALL_STATE(1089)] = 74146, + [SMALL_STATE(1090)] = 74191, + [SMALL_STATE(1091)] = 74236, + [SMALL_STATE(1092)] = 74283, + [SMALL_STATE(1093)] = 74332, + [SMALL_STATE(1094)] = 74379, + [SMALL_STATE(1095)] = 74428, + [SMALL_STATE(1096)] = 74475, + [SMALL_STATE(1097)] = 74530, + [SMALL_STATE(1098)] = 74579, + [SMALL_STATE(1099)] = 74626, + [SMALL_STATE(1100)] = 74671, + [SMALL_STATE(1101)] = 74720, + [SMALL_STATE(1102)] = 74769, + [SMALL_STATE(1103)] = 74814, + [SMALL_STATE(1104)] = 74869, + [SMALL_STATE(1105)] = 74932, + [SMALL_STATE(1106)] = 74997, + [SMALL_STATE(1107)] = 75046, + [SMALL_STATE(1108)] = 75095, + [SMALL_STATE(1109)] = 75150, + [SMALL_STATE(1110)] = 75217, + [SMALL_STATE(1111)] = 75276, + [SMALL_STATE(1112)] = 75321, + [SMALL_STATE(1113)] = 75376, + [SMALL_STATE(1114)] = 75427, + [SMALL_STATE(1115)] = 75472, + [SMALL_STATE(1116)] = 75541, + [SMALL_STATE(1117)] = 75602, + [SMALL_STATE(1118)] = 75657, + [SMALL_STATE(1119)] = 75716, + [SMALL_STATE(1120)] = 75763, + [SMALL_STATE(1121)] = 75818, + [SMALL_STATE(1122)] = 75863, + [SMALL_STATE(1123)] = 75908, + [SMALL_STATE(1124)] = 75953, + [SMALL_STATE(1125)] = 76008, + [SMALL_STATE(1126)] = 76053, + [SMALL_STATE(1127)] = 76098, + [SMALL_STATE(1128)] = 76147, + [SMALL_STATE(1129)] = 76192, + [SMALL_STATE(1130)] = 76237, + [SMALL_STATE(1131)] = 76306, + [SMALL_STATE(1132)] = 76367, + [SMALL_STATE(1133)] = 76422, + [SMALL_STATE(1134)] = 76467, + [SMALL_STATE(1135)] = 76512, + [SMALL_STATE(1136)] = 76561, + [SMALL_STATE(1137)] = 76606, + [SMALL_STATE(1138)] = 76651, + [SMALL_STATE(1139)] = 76696, + [SMALL_STATE(1140)] = 76741, + [SMALL_STATE(1141)] = 76786, + [SMALL_STATE(1142)] = 76855, + [SMALL_STATE(1143)] = 76924, + [SMALL_STATE(1144)] = 76969, + [SMALL_STATE(1145)] = 77020, + [SMALL_STATE(1146)] = 77075, + [SMALL_STATE(1147)] = 77130, + [SMALL_STATE(1148)] = 77175, + [SMALL_STATE(1149)] = 77220, + [SMALL_STATE(1150)] = 77269, + [SMALL_STATE(1151)] = 77318, + [SMALL_STATE(1152)] = 77363, + [SMALL_STATE(1153)] = 77412, + [SMALL_STATE(1154)] = 77478, + [SMALL_STATE(1155)] = 77522, + [SMALL_STATE(1156)] = 77566, + [SMALL_STATE(1157)] = 77610, + [SMALL_STATE(1158)] = 77654, + [SMALL_STATE(1159)] = 77698, + [SMALL_STATE(1160)] = 77742, + [SMALL_STATE(1161)] = 77786, + [SMALL_STATE(1162)] = 77830, + [SMALL_STATE(1163)] = 77874, + [SMALL_STATE(1164)] = 77918, + [SMALL_STATE(1165)] = 77962, + [SMALL_STATE(1166)] = 78006, + [SMALL_STATE(1167)] = 78050, + [SMALL_STATE(1168)] = 78098, + [SMALL_STATE(1169)] = 78142, + [SMALL_STATE(1170)] = 78186, + [SMALL_STATE(1171)] = 78232, + [SMALL_STATE(1172)] = 78276, + [SMALL_STATE(1173)] = 78320, + [SMALL_STATE(1174)] = 78364, + [SMALL_STATE(1175)] = 78410, + [SMALL_STATE(1176)] = 78456, + [SMALL_STATE(1177)] = 78502, + [SMALL_STATE(1178)] = 78548, + [SMALL_STATE(1179)] = 78592, + [SMALL_STATE(1180)] = 78636, + [SMALL_STATE(1181)] = 78682, + [SMALL_STATE(1182)] = 78726, + [SMALL_STATE(1183)] = 78772, + [SMALL_STATE(1184)] = 78816, + [SMALL_STATE(1185)] = 78860, + [SMALL_STATE(1186)] = 78904, + [SMALL_STATE(1187)] = 78948, + [SMALL_STATE(1188)] = 78996, + [SMALL_STATE(1189)] = 79044, + [SMALL_STATE(1190)] = 79092, + [SMALL_STATE(1191)] = 79168, + [SMALL_STATE(1192)] = 79212, + [SMALL_STATE(1193)] = 79256, + [SMALL_STATE(1194)] = 79310, + [SMALL_STATE(1195)] = 79358, + [SMALL_STATE(1196)] = 79402, + [SMALL_STATE(1197)] = 79450, + [SMALL_STATE(1198)] = 79504, + [SMALL_STATE(1199)] = 79548, + [SMALL_STATE(1200)] = 79594, + [SMALL_STATE(1201)] = 79644, + [SMALL_STATE(1202)] = 79690, + [SMALL_STATE(1203)] = 79736, + [SMALL_STATE(1204)] = 79780, + [SMALL_STATE(1205)] = 79824, + [SMALL_STATE(1206)] = 79868, + [SMALL_STATE(1207)] = 79912, + [SMALL_STATE(1208)] = 79976, + [SMALL_STATE(1209)] = 80020, + [SMALL_STATE(1210)] = 80074, + [SMALL_STATE(1211)] = 80134, + [SMALL_STATE(1212)] = 80202, + [SMALL_STATE(1213)] = 80256, + [SMALL_STATE(1214)] = 80314, + [SMALL_STATE(1215)] = 80358, + [SMALL_STATE(1216)] = 80406, + [SMALL_STATE(1217)] = 80454, + [SMALL_STATE(1218)] = 80498, + [SMALL_STATE(1219)] = 80542, + [SMALL_STATE(1220)] = 80604, + [SMALL_STATE(1221)] = 80648, + [SMALL_STATE(1222)] = 80724, + [SMALL_STATE(1223)] = 80774, + [SMALL_STATE(1224)] = 80818, + [SMALL_STATE(1225)] = 80862, + [SMALL_STATE(1226)] = 80906, + [SMALL_STATE(1227)] = 80974, + [SMALL_STATE(1228)] = 81022, + [SMALL_STATE(1229)] = 81070, + [SMALL_STATE(1230)] = 81118, + [SMALL_STATE(1231)] = 81186, + [SMALL_STATE(1232)] = 81232, + [SMALL_STATE(1233)] = 81276, + [SMALL_STATE(1234)] = 81324, + [SMALL_STATE(1235)] = 81372, + [SMALL_STATE(1236)] = 81416, + [SMALL_STATE(1237)] = 81460, + [SMALL_STATE(1238)] = 81508, + [SMALL_STATE(1239)] = 81552, + [SMALL_STATE(1240)] = 81596, + [SMALL_STATE(1241)] = 81640, + [SMALL_STATE(1242)] = 81688, + [SMALL_STATE(1243)] = 81734, + [SMALL_STATE(1244)] = 81778, + [SMALL_STATE(1245)] = 81822, + [SMALL_STATE(1246)] = 81866, + [SMALL_STATE(1247)] = 81910, + [SMALL_STATE(1248)] = 81956, + [SMALL_STATE(1249)] = 82002, + [SMALL_STATE(1250)] = 82048, + [SMALL_STATE(1251)] = 82092, + [SMALL_STATE(1252)] = 82138, + [SMALL_STATE(1253)] = 82182, + [SMALL_STATE(1254)] = 82230, + [SMALL_STATE(1255)] = 82274, + [SMALL_STATE(1256)] = 82318, + [SMALL_STATE(1257)] = 82364, + [SMALL_STATE(1258)] = 82412, + [SMALL_STATE(1259)] = 82456, + [SMALL_STATE(1260)] = 82500, + [SMALL_STATE(1261)] = 82544, + [SMALL_STATE(1262)] = 82588, + [SMALL_STATE(1263)] = 82632, + [SMALL_STATE(1264)] = 82676, + [SMALL_STATE(1265)] = 82720, + [SMALL_STATE(1266)] = 82764, + [SMALL_STATE(1267)] = 82808, + [SMALL_STATE(1268)] = 82856, + [SMALL_STATE(1269)] = 82900, + [SMALL_STATE(1270)] = 82944, + [SMALL_STATE(1271)] = 82988, + [SMALL_STATE(1272)] = 83032, + [SMALL_STATE(1273)] = 83076, + [SMALL_STATE(1274)] = 83120, + [SMALL_STATE(1275)] = 83164, + [SMALL_STATE(1276)] = 83208, + [SMALL_STATE(1277)] = 83252, + [SMALL_STATE(1278)] = 83296, + [SMALL_STATE(1279)] = 83372, + [SMALL_STATE(1280)] = 83415, + [SMALL_STATE(1281)] = 83458, + [SMALL_STATE(1282)] = 83501, + [SMALL_STATE(1283)] = 83544, + [SMALL_STATE(1284)] = 83587, + [SMALL_STATE(1285)] = 83632, + [SMALL_STATE(1286)] = 83679, + [SMALL_STATE(1287)] = 83724, + [SMALL_STATE(1288)] = 83767, + [SMALL_STATE(1289)] = 83810, + [SMALL_STATE(1290)] = 83853, + [SMALL_STATE(1291)] = 83896, + [SMALL_STATE(1292)] = 83939, + [SMALL_STATE(1293)] = 83982, + [SMALL_STATE(1294)] = 84029, + [SMALL_STATE(1295)] = 84074, + [SMALL_STATE(1296)] = 84117, + [SMALL_STATE(1297)] = 84160, + [SMALL_STATE(1298)] = 84203, + [SMALL_STATE(1299)] = 84246, + [SMALL_STATE(1300)] = 84291, + [SMALL_STATE(1301)] = 84334, + [SMALL_STATE(1302)] = 84379, + [SMALL_STATE(1303)] = 84422, + [SMALL_STATE(1304)] = 84465, + [SMALL_STATE(1305)] = 84508, + [SMALL_STATE(1306)] = 84553, + [SMALL_STATE(1307)] = 84598, + [SMALL_STATE(1308)] = 84645, + [SMALL_STATE(1309)] = 84692, + [SMALL_STATE(1310)] = 84735, + [SMALL_STATE(1311)] = 84778, + [SMALL_STATE(1312)] = 84821, + [SMALL_STATE(1313)] = 84866, + [SMALL_STATE(1314)] = 84913, + [SMALL_STATE(1315)] = 84960, + [SMALL_STATE(1316)] = 85003, + [SMALL_STATE(1317)] = 85046, + [SMALL_STATE(1318)] = 85089, + [SMALL_STATE(1319)] = 85134, + [SMALL_STATE(1320)] = 85185, + [SMALL_STATE(1321)] = 85230, + [SMALL_STATE(1322)] = 85273, + [SMALL_STATE(1323)] = 85316, + [SMALL_STATE(1324)] = 85359, + [SMALL_STATE(1325)] = 85402, + [SMALL_STATE(1326)] = 85445, + [SMALL_STATE(1327)] = 85488, + [SMALL_STATE(1328)] = 85531, + [SMALL_STATE(1329)] = 85574, + [SMALL_STATE(1330)] = 85617, + [SMALL_STATE(1331)] = 85660, + [SMALL_STATE(1332)] = 85703, + [SMALL_STATE(1333)] = 85746, + [SMALL_STATE(1334)] = 85789, + [SMALL_STATE(1335)] = 85832, + [SMALL_STATE(1336)] = 85875, + [SMALL_STATE(1337)] = 85918, + [SMALL_STATE(1338)] = 85961, + [SMALL_STATE(1339)] = 86004, + [SMALL_STATE(1340)] = 86047, + [SMALL_STATE(1341)] = 86090, + [SMALL_STATE(1342)] = 86133, + [SMALL_STATE(1343)] = 86176, + [SMALL_STATE(1344)] = 86219, + [SMALL_STATE(1345)] = 86262, + [SMALL_STATE(1346)] = 86305, + [SMALL_STATE(1347)] = 86348, + [SMALL_STATE(1348)] = 86391, + [SMALL_STATE(1349)] = 86434, + [SMALL_STATE(1350)] = 86477, + [SMALL_STATE(1351)] = 86524, + [SMALL_STATE(1352)] = 86567, + [SMALL_STATE(1353)] = 86610, + [SMALL_STATE(1354)] = 86653, + [SMALL_STATE(1355)] = 86696, + [SMALL_STATE(1356)] = 86743, + [SMALL_STATE(1357)] = 86786, + [SMALL_STATE(1358)] = 86829, + [SMALL_STATE(1359)] = 86876, + [SMALL_STATE(1360)] = 86923, + [SMALL_STATE(1361)] = 86970, + [SMALL_STATE(1362)] = 87013, + [SMALL_STATE(1363)] = 87056, + [SMALL_STATE(1364)] = 87099, + [SMALL_STATE(1365)] = 87142, + [SMALL_STATE(1366)] = 87185, + [SMALL_STATE(1367)] = 87228, + [SMALL_STATE(1368)] = 87271, + [SMALL_STATE(1369)] = 87314, + [SMALL_STATE(1370)] = 87357, + [SMALL_STATE(1371)] = 87400, + [SMALL_STATE(1372)] = 87443, + [SMALL_STATE(1373)] = 87486, + [SMALL_STATE(1374)] = 87529, + [SMALL_STATE(1375)] = 87572, + [SMALL_STATE(1376)] = 87615, + [SMALL_STATE(1377)] = 87666, + [SMALL_STATE(1378)] = 87709, + [SMALL_STATE(1379)] = 87752, + [SMALL_STATE(1380)] = 87795, + [SMALL_STATE(1381)] = 87838, + [SMALL_STATE(1382)] = 87881, + [SMALL_STATE(1383)] = 87924, + [SMALL_STATE(1384)] = 87967, + [SMALL_STATE(1385)] = 88010, + [SMALL_STATE(1386)] = 88053, + [SMALL_STATE(1387)] = 88096, + [SMALL_STATE(1388)] = 88139, + [SMALL_STATE(1389)] = 88182, + [SMALL_STATE(1390)] = 88225, + [SMALL_STATE(1391)] = 88268, + [SMALL_STATE(1392)] = 88311, + [SMALL_STATE(1393)] = 88354, + [SMALL_STATE(1394)] = 88397, + [SMALL_STATE(1395)] = 88440, + [SMALL_STATE(1396)] = 88483, + [SMALL_STATE(1397)] = 88526, + [SMALL_STATE(1398)] = 88569, + [SMALL_STATE(1399)] = 88612, + [SMALL_STATE(1400)] = 88655, + [SMALL_STATE(1401)] = 88698, + [SMALL_STATE(1402)] = 88741, + [SMALL_STATE(1403)] = 88786, + [SMALL_STATE(1404)] = 88831, + [SMALL_STATE(1405)] = 88874, + [SMALL_STATE(1406)] = 88917, + [SMALL_STATE(1407)] = 88960, + [SMALL_STATE(1408)] = 89007, + [SMALL_STATE(1409)] = 89050, + [SMALL_STATE(1410)] = 89093, + [SMALL_STATE(1411)] = 89136, + [SMALL_STATE(1412)] = 89179, + [SMALL_STATE(1413)] = 89222, + [SMALL_STATE(1414)] = 89265, + [SMALL_STATE(1415)] = 89310, + [SMALL_STATE(1416)] = 89353, + [SMALL_STATE(1417)] = 89398, + [SMALL_STATE(1418)] = 89441, + [SMALL_STATE(1419)] = 89486, + [SMALL_STATE(1420)] = 89531, + [SMALL_STATE(1421)] = 89576, + [SMALL_STATE(1422)] = 89619, + [SMALL_STATE(1423)] = 89664, + [SMALL_STATE(1424)] = 89707, + [SMALL_STATE(1425)] = 89750, + [SMALL_STATE(1426)] = 89793, + [SMALL_STATE(1427)] = 89836, + [SMALL_STATE(1428)] = 89879, + [SMALL_STATE(1429)] = 89922, + [SMALL_STATE(1430)] = 89965, + [SMALL_STATE(1431)] = 90008, + [SMALL_STATE(1432)] = 90051, + [SMALL_STATE(1433)] = 90094, + [SMALL_STATE(1434)] = 90137, + [SMALL_STATE(1435)] = 90184, + [SMALL_STATE(1436)] = 90231, + [SMALL_STATE(1437)] = 90278, + [SMALL_STATE(1438)] = 90321, + [SMALL_STATE(1439)] = 90366, + [SMALL_STATE(1440)] = 90409, + [SMALL_STATE(1441)] = 90452, + [SMALL_STATE(1442)] = 90495, + [SMALL_STATE(1443)] = 90537, + [SMALL_STATE(1444)] = 90579, + [SMALL_STATE(1445)] = 90621, + [SMALL_STATE(1446)] = 90663, + [SMALL_STATE(1447)] = 90705, + [SMALL_STATE(1448)] = 90747, + [SMALL_STATE(1449)] = 90789, + [SMALL_STATE(1450)] = 90831, + [SMALL_STATE(1451)] = 90873, + [SMALL_STATE(1452)] = 90915, + [SMALL_STATE(1453)] = 90957, + [SMALL_STATE(1454)] = 90999, + [SMALL_STATE(1455)] = 91041, + [SMALL_STATE(1456)] = 91083, + [SMALL_STATE(1457)] = 91125, + [SMALL_STATE(1458)] = 91167, + [SMALL_STATE(1459)] = 91209, + [SMALL_STATE(1460)] = 91251, + [SMALL_STATE(1461)] = 91293, + [SMALL_STATE(1462)] = 91335, + [SMALL_STATE(1463)] = 91377, + [SMALL_STATE(1464)] = 91419, + [SMALL_STATE(1465)] = 91461, + [SMALL_STATE(1466)] = 91503, + [SMALL_STATE(1467)] = 91545, + [SMALL_STATE(1468)] = 91587, + [SMALL_STATE(1469)] = 91629, + [SMALL_STATE(1470)] = 91673, + [SMALL_STATE(1471)] = 91717, + [SMALL_STATE(1472)] = 91761, + [SMALL_STATE(1473)] = 91803, + [SMALL_STATE(1474)] = 91845, + [SMALL_STATE(1475)] = 91891, + [SMALL_STATE(1476)] = 91941, + [SMALL_STATE(1477)] = 91987, + [SMALL_STATE(1478)] = 92029, + [SMALL_STATE(1479)] = 92073, + [SMALL_STATE(1480)] = 92117, + [SMALL_STATE(1481)] = 92163, + [SMALL_STATE(1482)] = 92207, + [SMALL_STATE(1483)] = 92249, + [SMALL_STATE(1484)] = 92291, + [SMALL_STATE(1485)] = 92333, + [SMALL_STATE(1486)] = 92381, + [SMALL_STATE(1487)] = 92425, + [SMALL_STATE(1488)] = 92469, + [SMALL_STATE(1489)] = 92513, + [SMALL_STATE(1490)] = 92556, + [SMALL_STATE(1491)] = 92597, + [SMALL_STATE(1492)] = 92640, + [SMALL_STATE(1493)] = 92681, + [SMALL_STATE(1494)] = 92722, + [SMALL_STATE(1495)] = 92763, + [SMALL_STATE(1496)] = 92804, + [SMALL_STATE(1497)] = 92845, + [SMALL_STATE(1498)] = 92886, + [SMALL_STATE(1499)] = 92929, + [SMALL_STATE(1500)] = 92972, + [SMALL_STATE(1501)] = 93015, + [SMALL_STATE(1502)] = 93056, + [SMALL_STATE(1503)] = 93099, + [SMALL_STATE(1504)] = 93140, + [SMALL_STATE(1505)] = 93183, + [SMALL_STATE(1506)] = 93226, + [SMALL_STATE(1507)] = 93267, + [SMALL_STATE(1508)] = 93310, + [SMALL_STATE(1509)] = 93384, + [SMALL_STATE(1510)] = 93458, + [SMALL_STATE(1511)] = 93526, + [SMALL_STATE(1512)] = 93594, + [SMALL_STATE(1513)] = 93662, + [SMALL_STATE(1514)] = 93730, + [SMALL_STATE(1515)] = 93798, + [SMALL_STATE(1516)] = 93866, + [SMALL_STATE(1517)] = 93934, + [SMALL_STATE(1518)] = 94002, + [SMALL_STATE(1519)] = 94070, + [SMALL_STATE(1520)] = 94138, + [SMALL_STATE(1521)] = 94206, + [SMALL_STATE(1522)] = 94274, + [SMALL_STATE(1523)] = 94342, + [SMALL_STATE(1524)] = 94410, + [SMALL_STATE(1525)] = 94478, + [SMALL_STATE(1526)] = 94546, + [SMALL_STATE(1527)] = 94614, + [SMALL_STATE(1528)] = 94682, + [SMALL_STATE(1529)] = 94750, + [SMALL_STATE(1530)] = 94818, + [SMALL_STATE(1531)] = 94886, + [SMALL_STATE(1532)] = 94954, + [SMALL_STATE(1533)] = 95022, + [SMALL_STATE(1534)] = 95090, + [SMALL_STATE(1535)] = 95158, + [SMALL_STATE(1536)] = 95226, + [SMALL_STATE(1537)] = 95294, + [SMALL_STATE(1538)] = 95362, + [SMALL_STATE(1539)] = 95430, + [SMALL_STATE(1540)] = 95498, + [SMALL_STATE(1541)] = 95566, + [SMALL_STATE(1542)] = 95634, + [SMALL_STATE(1543)] = 95702, + [SMALL_STATE(1544)] = 95770, + [SMALL_STATE(1545)] = 95838, + [SMALL_STATE(1546)] = 95906, + [SMALL_STATE(1547)] = 95971, + [SMALL_STATE(1548)] = 96036, + [SMALL_STATE(1549)] = 96101, + [SMALL_STATE(1550)] = 96166, + [SMALL_STATE(1551)] = 96231, + [SMALL_STATE(1552)] = 96297, + [SMALL_STATE(1553)] = 96363, + [SMALL_STATE(1554)] = 96429, + [SMALL_STATE(1555)] = 96495, + [SMALL_STATE(1556)] = 96561, + [SMALL_STATE(1557)] = 96627, + [SMALL_STATE(1558)] = 96693, + [SMALL_STATE(1559)] = 96759, + [SMALL_STATE(1560)] = 96825, + [SMALL_STATE(1561)] = 96891, + [SMALL_STATE(1562)] = 96957, + [SMALL_STATE(1563)] = 97023, + [SMALL_STATE(1564)] = 97089, + [SMALL_STATE(1565)] = 97155, + [SMALL_STATE(1566)] = 97221, + [SMALL_STATE(1567)] = 97287, + [SMALL_STATE(1568)] = 97353, + [SMALL_STATE(1569)] = 97419, + [SMALL_STATE(1570)] = 97485, + [SMALL_STATE(1571)] = 97551, + [SMALL_STATE(1572)] = 97614, + [SMALL_STATE(1573)] = 97672, + [SMALL_STATE(1574)] = 97730, + [SMALL_STATE(1575)] = 97788, + [SMALL_STATE(1576)] = 97846, + [SMALL_STATE(1577)] = 97904, + [SMALL_STATE(1578)] = 97962, + [SMALL_STATE(1579)] = 98020, + [SMALL_STATE(1580)] = 98078, + [SMALL_STATE(1581)] = 98120, + [SMALL_STATE(1582)] = 98162, + [SMALL_STATE(1583)] = 98194, + [SMALL_STATE(1584)] = 98226, + [SMALL_STATE(1585)] = 98266, + [SMALL_STATE(1586)] = 98298, + [SMALL_STATE(1587)] = 98338, + [SMALL_STATE(1588)] = 98370, + [SMALL_STATE(1589)] = 98402, + [SMALL_STATE(1590)] = 98442, + [SMALL_STATE(1591)] = 98474, + [SMALL_STATE(1592)] = 98514, + [SMALL_STATE(1593)] = 98553, + [SMALL_STATE(1594)] = 98590, + [SMALL_STATE(1595)] = 98629, + [SMALL_STATE(1596)] = 98668, + [SMALL_STATE(1597)] = 98707, + [SMALL_STATE(1598)] = 98744, + [SMALL_STATE(1599)] = 98774, + [SMALL_STATE(1600)] = 98804, + [SMALL_STATE(1601)] = 98834, + [SMALL_STATE(1602)] = 98872, + [SMALL_STATE(1603)] = 98902, + [SMALL_STATE(1604)] = 98940, + [SMALL_STATE(1605)] = 98970, + [SMALL_STATE(1606)] = 99000, + [SMALL_STATE(1607)] = 99030, + [SMALL_STATE(1608)] = 99060, + [SMALL_STATE(1609)] = 99098, + [SMALL_STATE(1610)] = 99136, + [SMALL_STATE(1611)] = 99165, + [SMALL_STATE(1612)] = 99194, + [SMALL_STATE(1613)] = 99223, + [SMALL_STATE(1614)] = 99252, + [SMALL_STATE(1615)] = 99281, + [SMALL_STATE(1616)] = 99306, + [SMALL_STATE(1617)] = 99335, + [SMALL_STATE(1618)] = 99364, + [SMALL_STATE(1619)] = 99411, + [SMALL_STATE(1620)] = 99458, + [SMALL_STATE(1621)] = 99487, + [SMALL_STATE(1622)] = 99516, + [SMALL_STATE(1623)] = 99545, + [SMALL_STATE(1624)] = 99574, + [SMALL_STATE(1625)] = 99621, + [SMALL_STATE(1626)] = 99650, + [SMALL_STATE(1627)] = 99697, + [SMALL_STATE(1628)] = 99744, + [SMALL_STATE(1629)] = 99773, + [SMALL_STATE(1630)] = 99802, + [SMALL_STATE(1631)] = 99831, + [SMALL_STATE(1632)] = 99878, + [SMALL_STATE(1633)] = 99907, + [SMALL_STATE(1634)] = 99954, + [SMALL_STATE(1635)] = 100001, + [SMALL_STATE(1636)] = 100048, + [SMALL_STATE(1637)] = 100077, + [SMALL_STATE(1638)] = 100106, + [SMALL_STATE(1639)] = 100131, + [SMALL_STATE(1640)] = 100160, + [SMALL_STATE(1641)] = 100189, + [SMALL_STATE(1642)] = 100218, + [SMALL_STATE(1643)] = 100243, + [SMALL_STATE(1644)] = 100268, + [SMALL_STATE(1645)] = 100297, + [SMALL_STATE(1646)] = 100326, + [SMALL_STATE(1647)] = 100355, + [SMALL_STATE(1648)] = 100402, + [SMALL_STATE(1649)] = 100448, + [SMALL_STATE(1650)] = 100494, + [SMALL_STATE(1651)] = 100540, + [SMALL_STATE(1652)] = 100572, + [SMALL_STATE(1653)] = 100618, + [SMALL_STATE(1654)] = 100646, + [SMALL_STATE(1655)] = 100692, + [SMALL_STATE(1656)] = 100722, + [SMALL_STATE(1657)] = 100768, + [SMALL_STATE(1658)] = 100796, + [SMALL_STATE(1659)] = 100842, + [SMALL_STATE(1660)] = 100866, + [SMALL_STATE(1661)] = 100890, + [SMALL_STATE(1662)] = 100914, + [SMALL_STATE(1663)] = 100960, + [SMALL_STATE(1664)] = 100984, + [SMALL_STATE(1665)] = 101030, + [SMALL_STATE(1666)] = 101076, + [SMALL_STATE(1667)] = 101108, + [SMALL_STATE(1668)] = 101154, + [SMALL_STATE(1669)] = 101197, + [SMALL_STATE(1670)] = 101237, + [SMALL_STATE(1671)] = 101277, + [SMALL_STATE(1672)] = 101317, + [SMALL_STATE(1673)] = 101343, + [SMALL_STATE(1674)] = 101383, + [SMALL_STATE(1675)] = 101420, + [SMALL_STATE(1676)] = 101457, + [SMALL_STATE(1677)] = 101476, + [SMALL_STATE(1678)] = 101499, + [SMALL_STATE(1679)] = 101540, + [SMALL_STATE(1680)] = 101581, + [SMALL_STATE(1681)] = 101622, + [SMALL_STATE(1682)] = 101663, + [SMALL_STATE(1683)] = 101690, + [SMALL_STATE(1684)] = 101731, + [SMALL_STATE(1685)] = 101772, + [SMALL_STATE(1686)] = 101791, + [SMALL_STATE(1687)] = 101818, + [SMALL_STATE(1688)] = 101843, + [SMALL_STATE(1689)] = 101864, + [SMALL_STATE(1690)] = 101905, + [SMALL_STATE(1691)] = 101932, + [SMALL_STATE(1692)] = 101951, + [SMALL_STATE(1693)] = 101992, + [SMALL_STATE(1694)] = 102030, + [SMALL_STATE(1695)] = 102068, + [SMALL_STATE(1696)] = 102106, + [SMALL_STATE(1697)] = 102144, + [SMALL_STATE(1698)] = 102182, + [SMALL_STATE(1699)] = 102220, + [SMALL_STATE(1700)] = 102258, + [SMALL_STATE(1701)] = 102290, + [SMALL_STATE(1702)] = 102328, + [SMALL_STATE(1703)] = 102366, + [SMALL_STATE(1704)] = 102404, + [SMALL_STATE(1705)] = 102442, + [SMALL_STATE(1706)] = 102480, + [SMALL_STATE(1707)] = 102518, + [SMALL_STATE(1708)] = 102556, + [SMALL_STATE(1709)] = 102594, + [SMALL_STATE(1710)] = 102632, + [SMALL_STATE(1711)] = 102670, + [SMALL_STATE(1712)] = 102708, + [SMALL_STATE(1713)] = 102746, + [SMALL_STATE(1714)] = 102784, + [SMALL_STATE(1715)] = 102822, + [SMALL_STATE(1716)] = 102860, + [SMALL_STATE(1717)] = 102898, + [SMALL_STATE(1718)] = 102936, + [SMALL_STATE(1719)] = 102974, + [SMALL_STATE(1720)] = 102997, + [SMALL_STATE(1721)] = 103022, + [SMALL_STATE(1722)] = 103041, + [SMALL_STATE(1723)] = 103070, + [SMALL_STATE(1724)] = 103099, + [SMALL_STATE(1725)] = 103128, + [SMALL_STATE(1726)] = 103157, + [SMALL_STATE(1727)] = 103182, + [SMALL_STATE(1728)] = 103207, + [SMALL_STATE(1729)] = 103224, + [SMALL_STATE(1730)] = 103253, + [SMALL_STATE(1731)] = 103282, + [SMALL_STATE(1732)] = 103311, + [SMALL_STATE(1733)] = 103340, + [SMALL_STATE(1734)] = 103369, + [SMALL_STATE(1735)] = 103386, + [SMALL_STATE(1736)] = 103407, + [SMALL_STATE(1737)] = 103436, + [SMALL_STATE(1738)] = 103465, + [SMALL_STATE(1739)] = 103494, + [SMALL_STATE(1740)] = 103519, + [SMALL_STATE(1741)] = 103536, + [SMALL_STATE(1742)] = 103561, + [SMALL_STATE(1743)] = 103590, + [SMALL_STATE(1744)] = 103607, + [SMALL_STATE(1745)] = 103636, + [SMALL_STATE(1746)] = 103665, + [SMALL_STATE(1747)] = 103690, + [SMALL_STATE(1748)] = 103719, + [SMALL_STATE(1749)] = 103738, + [SMALL_STATE(1750)] = 103755, + [SMALL_STATE(1751)] = 103776, + [SMALL_STATE(1752)] = 103801, + [SMALL_STATE(1753)] = 103830, + [SMALL_STATE(1754)] = 103859, + [SMALL_STATE(1755)] = 103884, + [SMALL_STATE(1756)] = 103913, + [SMALL_STATE(1757)] = 103942, + [SMALL_STATE(1758)] = 103965, + [SMALL_STATE(1759)] = 103994, + [SMALL_STATE(1760)] = 104011, + [SMALL_STATE(1761)] = 104031, + [SMALL_STATE(1762)] = 104051, + [SMALL_STATE(1763)] = 104075, + [SMALL_STATE(1764)] = 104099, + [SMALL_STATE(1765)] = 104117, + [SMALL_STATE(1766)] = 104139, + [SMALL_STATE(1767)] = 104157, + [SMALL_STATE(1768)] = 104181, + [SMALL_STATE(1769)] = 104197, + [SMALL_STATE(1770)] = 104217, + [SMALL_STATE(1771)] = 104239, + [SMALL_STATE(1772)] = 104259, + [SMALL_STATE(1773)] = 104275, + [SMALL_STATE(1774)] = 104293, + [SMALL_STATE(1775)] = 104315, + [SMALL_STATE(1776)] = 104339, + [SMALL_STATE(1777)] = 104359, + [SMALL_STATE(1778)] = 104379, + [SMALL_STATE(1779)] = 104395, + [SMALL_STATE(1780)] = 104413, + [SMALL_STATE(1781)] = 104437, + [SMALL_STATE(1782)] = 104453, + [SMALL_STATE(1783)] = 104477, + [SMALL_STATE(1784)] = 104499, + [SMALL_STATE(1785)] = 104521, + [SMALL_STATE(1786)] = 104545, + [SMALL_STATE(1787)] = 104569, + [SMALL_STATE(1788)] = 104593, + [SMALL_STATE(1789)] = 104623, + [SMALL_STATE(1790)] = 104647, + [SMALL_STATE(1791)] = 104665, + [SMALL_STATE(1792)] = 104689, + [SMALL_STATE(1793)] = 104705, + [SMALL_STATE(1794)] = 104729, + [SMALL_STATE(1795)] = 104745, + [SMALL_STATE(1796)] = 104769, + [SMALL_STATE(1797)] = 104790, + [SMALL_STATE(1798)] = 104817, + [SMALL_STATE(1799)] = 104838, + [SMALL_STATE(1800)] = 104859, + [SMALL_STATE(1801)] = 104882, + [SMALL_STATE(1802)] = 104903, + [SMALL_STATE(1803)] = 104924, + [SMALL_STATE(1804)] = 104945, + [SMALL_STATE(1805)] = 104966, + [SMALL_STATE(1806)] = 104989, + [SMALL_STATE(1807)] = 105006, + [SMALL_STATE(1808)] = 105029, + [SMALL_STATE(1809)] = 105048, + [SMALL_STATE(1810)] = 105077, + [SMALL_STATE(1811)] = 105104, + [SMALL_STATE(1812)] = 105121, + [SMALL_STATE(1813)] = 105150, + [SMALL_STATE(1814)] = 105177, + [SMALL_STATE(1815)] = 105206, + [SMALL_STATE(1816)] = 105221, + [SMALL_STATE(1817)] = 105246, + [SMALL_STATE(1818)] = 105269, + [SMALL_STATE(1819)] = 105298, + [SMALL_STATE(1820)] = 105327, + [SMALL_STATE(1821)] = 105352, + [SMALL_STATE(1822)] = 105377, + [SMALL_STATE(1823)] = 105400, + [SMALL_STATE(1824)] = 105425, + [SMALL_STATE(1825)] = 105446, + [SMALL_STATE(1826)] = 105467, + [SMALL_STATE(1827)] = 105484, + [SMALL_STATE(1828)] = 105501, + [SMALL_STATE(1829)] = 105528, + [SMALL_STATE(1830)] = 105557, + [SMALL_STATE(1831)] = 105584, + [SMALL_STATE(1832)] = 105611, + [SMALL_STATE(1833)] = 105640, + [SMALL_STATE(1834)] = 105669, + [SMALL_STATE(1835)] = 105688, + [SMALL_STATE(1836)] = 105715, + [SMALL_STATE(1837)] = 105736, + [SMALL_STATE(1838)] = 105757, + [SMALL_STATE(1839)] = 105778, + [SMALL_STATE(1840)] = 105801, + [SMALL_STATE(1841)] = 105826, + [SMALL_STATE(1842)] = 105849, + [SMALL_STATE(1843)] = 105874, + [SMALL_STATE(1844)] = 105891, + [SMALL_STATE(1845)] = 105912, + [SMALL_STATE(1846)] = 105941, + [SMALL_STATE(1847)] = 105962, + [SMALL_STATE(1848)] = 105985, + [SMALL_STATE(1849)] = 106012, + [SMALL_STATE(1850)] = 106033, + [SMALL_STATE(1851)] = 106050, + [SMALL_STATE(1852)] = 106069, + [SMALL_STATE(1853)] = 106098, + [SMALL_STATE(1854)] = 106119, + [SMALL_STATE(1855)] = 106145, + [SMALL_STATE(1856)] = 106167, + [SMALL_STATE(1857)] = 106189, + [SMALL_STATE(1858)] = 106211, + [SMALL_STATE(1859)] = 106233, + [SMALL_STATE(1860)] = 106251, + [SMALL_STATE(1861)] = 106273, + [SMALL_STATE(1862)] = 106291, + [SMALL_STATE(1863)] = 106317, + [SMALL_STATE(1864)] = 106339, + [SMALL_STATE(1865)] = 106357, + [SMALL_STATE(1866)] = 106383, + [SMALL_STATE(1867)] = 106409, + [SMALL_STATE(1868)] = 106427, + [SMALL_STATE(1869)] = 106451, + [SMALL_STATE(1870)] = 106469, + [SMALL_STATE(1871)] = 106487, + [SMALL_STATE(1872)] = 106503, + [SMALL_STATE(1873)] = 106529, + [SMALL_STATE(1874)] = 106555, + [SMALL_STATE(1875)] = 106581, + [SMALL_STATE(1876)] = 106605, + [SMALL_STATE(1877)] = 106627, + [SMALL_STATE(1878)] = 106647, + [SMALL_STATE(1879)] = 106665, + [SMALL_STATE(1880)] = 106689, + [SMALL_STATE(1881)] = 106711, + [SMALL_STATE(1882)] = 106735, + [SMALL_STATE(1883)] = 106761, + [SMALL_STATE(1884)] = 106779, + [SMALL_STATE(1885)] = 106805, + [SMALL_STATE(1886)] = 106831, + [SMALL_STATE(1887)] = 106857, + [SMALL_STATE(1888)] = 106877, + [SMALL_STATE(1889)] = 106903, + [SMALL_STATE(1890)] = 106919, + [SMALL_STATE(1891)] = 106939, + [SMALL_STATE(1892)] = 106965, + [SMALL_STATE(1893)] = 106991, + [SMALL_STATE(1894)] = 107013, + [SMALL_STATE(1895)] = 107039, + [SMALL_STATE(1896)] = 107057, + [SMALL_STATE(1897)] = 107079, + [SMALL_STATE(1898)] = 107101, + [SMALL_STATE(1899)] = 107123, + [SMALL_STATE(1900)] = 107149, + [SMALL_STATE(1901)] = 107175, + [SMALL_STATE(1902)] = 107201, + [SMALL_STATE(1903)] = 107219, + [SMALL_STATE(1904)] = 107237, + [SMALL_STATE(1905)] = 107255, + [SMALL_STATE(1906)] = 107277, + [SMALL_STATE(1907)] = 107292, + [SMALL_STATE(1908)] = 107305, + [SMALL_STATE(1909)] = 107326, + [SMALL_STATE(1910)] = 107349, + [SMALL_STATE(1911)] = 107366, + [SMALL_STATE(1912)] = 107387, + [SMALL_STATE(1913)] = 107404, + [SMALL_STATE(1914)] = 107425, + [SMALL_STATE(1915)] = 107440, + [SMALL_STATE(1916)] = 107453, + [SMALL_STATE(1917)] = 107470, + [SMALL_STATE(1918)] = 107493, + [SMALL_STATE(1919)] = 107514, + [SMALL_STATE(1920)] = 107531, + [SMALL_STATE(1921)] = 107544, + [SMALL_STATE(1922)] = 107567, + [SMALL_STATE(1923)] = 107588, + [SMALL_STATE(1924)] = 107607, + [SMALL_STATE(1925)] = 107620, + [SMALL_STATE(1926)] = 107641, + [SMALL_STATE(1927)] = 107658, + [SMALL_STATE(1928)] = 107679, + [SMALL_STATE(1929)] = 107700, + [SMALL_STATE(1930)] = 107721, + [SMALL_STATE(1931)] = 107738, + [SMALL_STATE(1932)] = 107755, + [SMALL_STATE(1933)] = 107772, + [SMALL_STATE(1934)] = 107793, + [SMALL_STATE(1935)] = 107810, + [SMALL_STATE(1936)] = 107831, + [SMALL_STATE(1937)] = 107848, + [SMALL_STATE(1938)] = 107869, + [SMALL_STATE(1939)] = 107890, + [SMALL_STATE(1940)] = 107905, + [SMALL_STATE(1941)] = 107928, + [SMALL_STATE(1942)] = 107949, + [SMALL_STATE(1943)] = 107970, + [SMALL_STATE(1944)] = 107991, + [SMALL_STATE(1945)] = 108008, + [SMALL_STATE(1946)] = 108025, + [SMALL_STATE(1947)] = 108042, + [SMALL_STATE(1948)] = 108059, + [SMALL_STATE(1949)] = 108076, + [SMALL_STATE(1950)] = 108097, + [SMALL_STATE(1951)] = 108114, + [SMALL_STATE(1952)] = 108131, + [SMALL_STATE(1953)] = 108152, + [SMALL_STATE(1954)] = 108169, + [SMALL_STATE(1955)] = 108184, + [SMALL_STATE(1956)] = 108201, + [SMALL_STATE(1957)] = 108224, + [SMALL_STATE(1958)] = 108245, + [SMALL_STATE(1959)] = 108262, + [SMALL_STATE(1960)] = 108275, + [SMALL_STATE(1961)] = 108292, + [SMALL_STATE(1962)] = 108313, + [SMALL_STATE(1963)] = 108330, + [SMALL_STATE(1964)] = 108351, + [SMALL_STATE(1965)] = 108372, + [SMALL_STATE(1966)] = 108389, + [SMALL_STATE(1967)] = 108410, + [SMALL_STATE(1968)] = 108431, + [SMALL_STATE(1969)] = 108448, + [SMALL_STATE(1970)] = 108461, + [SMALL_STATE(1971)] = 108478, + [SMALL_STATE(1972)] = 108491, + [SMALL_STATE(1973)] = 108504, + [SMALL_STATE(1974)] = 108517, + [SMALL_STATE(1975)] = 108534, + [SMALL_STATE(1976)] = 108557, + [SMALL_STATE(1977)] = 108572, + [SMALL_STATE(1978)] = 108593, + [SMALL_STATE(1979)] = 108614, + [SMALL_STATE(1980)] = 108635, + [SMALL_STATE(1981)] = 108648, + [SMALL_STATE(1982)] = 108663, + [SMALL_STATE(1983)] = 108680, + [SMALL_STATE(1984)] = 108697, + [SMALL_STATE(1985)] = 108710, + [SMALL_STATE(1986)] = 108727, + [SMALL_STATE(1987)] = 108740, + [SMALL_STATE(1988)] = 108757, + [SMALL_STATE(1989)] = 108778, + [SMALL_STATE(1990)] = 108797, + [SMALL_STATE(1991)] = 108810, + [SMALL_STATE(1992)] = 108827, + [SMALL_STATE(1993)] = 108850, + [SMALL_STATE(1994)] = 108867, + [SMALL_STATE(1995)] = 108884, + [SMALL_STATE(1996)] = 108905, + [SMALL_STATE(1997)] = 108922, + [SMALL_STATE(1998)] = 108935, + [SMALL_STATE(1999)] = 108956, + [SMALL_STATE(2000)] = 108971, + [SMALL_STATE(2001)] = 108992, + [SMALL_STATE(2002)] = 109013, + [SMALL_STATE(2003)] = 109026, + [SMALL_STATE(2004)] = 109039, + [SMALL_STATE(2005)] = 109056, + [SMALL_STATE(2006)] = 109069, + [SMALL_STATE(2007)] = 109082, + [SMALL_STATE(2008)] = 109099, + [SMALL_STATE(2009)] = 109114, + [SMALL_STATE(2010)] = 109127, + [SMALL_STATE(2011)] = 109143, + [SMALL_STATE(2012)] = 109155, + [SMALL_STATE(2013)] = 109167, + [SMALL_STATE(2014)] = 109185, + [SMALL_STATE(2015)] = 109205, + [SMALL_STATE(2016)] = 109223, + [SMALL_STATE(2017)] = 109239, + [SMALL_STATE(2018)] = 109251, + [SMALL_STATE(2019)] = 109265, + [SMALL_STATE(2020)] = 109277, + [SMALL_STATE(2021)] = 109289, + [SMALL_STATE(2022)] = 109307, + [SMALL_STATE(2023)] = 109319, + [SMALL_STATE(2024)] = 109335, + [SMALL_STATE(2025)] = 109347, + [SMALL_STATE(2026)] = 109363, + [SMALL_STATE(2027)] = 109377, + [SMALL_STATE(2028)] = 109397, + [SMALL_STATE(2029)] = 109409, + [SMALL_STATE(2030)] = 109421, + [SMALL_STATE(2031)] = 109441, + [SMALL_STATE(2032)] = 109453, + [SMALL_STATE(2033)] = 109465, + [SMALL_STATE(2034)] = 109477, + [SMALL_STATE(2035)] = 109497, + [SMALL_STATE(2036)] = 109509, + [SMALL_STATE(2037)] = 109521, + [SMALL_STATE(2038)] = 109535, + [SMALL_STATE(2039)] = 109551, + [SMALL_STATE(2040)] = 109563, + [SMALL_STATE(2041)] = 109583, + [SMALL_STATE(2042)] = 109595, + [SMALL_STATE(2043)] = 109607, + [SMALL_STATE(2044)] = 109623, + [SMALL_STATE(2045)] = 109635, + [SMALL_STATE(2046)] = 109655, + [SMALL_STATE(2047)] = 109673, + [SMALL_STATE(2048)] = 109693, + [SMALL_STATE(2049)] = 109705, + [SMALL_STATE(2050)] = 109725, + [SMALL_STATE(2051)] = 109737, + [SMALL_STATE(2052)] = 109757, + [SMALL_STATE(2053)] = 109775, + [SMALL_STATE(2054)] = 109791, + [SMALL_STATE(2055)] = 109807, + [SMALL_STATE(2056)] = 109825, + [SMALL_STATE(2057)] = 109843, + [SMALL_STATE(2058)] = 109855, + [SMALL_STATE(2059)] = 109867, + [SMALL_STATE(2060)] = 109881, + [SMALL_STATE(2061)] = 109897, + [SMALL_STATE(2062)] = 109913, + [SMALL_STATE(2063)] = 109931, + [SMALL_STATE(2064)] = 109943, + [SMALL_STATE(2065)] = 109963, + [SMALL_STATE(2066)] = 109975, + [SMALL_STATE(2067)] = 109987, + [SMALL_STATE(2068)] = 110003, + [SMALL_STATE(2069)] = 110015, + [SMALL_STATE(2070)] = 110027, + [SMALL_STATE(2071)] = 110047, + [SMALL_STATE(2072)] = 110059, + [SMALL_STATE(2073)] = 110071, + [SMALL_STATE(2074)] = 110083, + [SMALL_STATE(2075)] = 110101, + [SMALL_STATE(2076)] = 110119, + [SMALL_STATE(2077)] = 110131, + [SMALL_STATE(2078)] = 110151, + [SMALL_STATE(2079)] = 110163, + [SMALL_STATE(2080)] = 110181, + [SMALL_STATE(2081)] = 110201, + [SMALL_STATE(2082)] = 110219, + [SMALL_STATE(2083)] = 110239, + [SMALL_STATE(2084)] = 110251, + [SMALL_STATE(2085)] = 110263, + [SMALL_STATE(2086)] = 110279, + [SMALL_STATE(2087)] = 110299, + [SMALL_STATE(2088)] = 110319, + [SMALL_STATE(2089)] = 110331, + [SMALL_STATE(2090)] = 110351, + [SMALL_STATE(2091)] = 110371, + [SMALL_STATE(2092)] = 110383, + [SMALL_STATE(2093)] = 110399, + [SMALL_STATE(2094)] = 110411, + [SMALL_STATE(2095)] = 110431, + [SMALL_STATE(2096)] = 110451, + [SMALL_STATE(2097)] = 110463, + [SMALL_STATE(2098)] = 110477, + [SMALL_STATE(2099)] = 110497, + [SMALL_STATE(2100)] = 110513, + [SMALL_STATE(2101)] = 110533, + [SMALL_STATE(2102)] = 110549, + [SMALL_STATE(2103)] = 110569, + [SMALL_STATE(2104)] = 110581, + [SMALL_STATE(2105)] = 110593, + [SMALL_STATE(2106)] = 110605, + [SMALL_STATE(2107)] = 110617, + [SMALL_STATE(2108)] = 110629, + [SMALL_STATE(2109)] = 110649, + [SMALL_STATE(2110)] = 110661, + [SMALL_STATE(2111)] = 110681, + [SMALL_STATE(2112)] = 110701, + [SMALL_STATE(2113)] = 110713, + [SMALL_STATE(2114)] = 110733, + [SMALL_STATE(2115)] = 110745, + [SMALL_STATE(2116)] = 110765, + [SMALL_STATE(2117)] = 110777, + [SMALL_STATE(2118)] = 110789, + [SMALL_STATE(2119)] = 110809, + [SMALL_STATE(2120)] = 110821, + [SMALL_STATE(2121)] = 110841, + [SMALL_STATE(2122)] = 110853, + [SMALL_STATE(2123)] = 110865, + [SMALL_STATE(2124)] = 110885, + [SMALL_STATE(2125)] = 110897, + [SMALL_STATE(2126)] = 110911, + [SMALL_STATE(2127)] = 110929, + [SMALL_STATE(2128)] = 110946, + [SMALL_STATE(2129)] = 110957, + [SMALL_STATE(2130)] = 110968, + [SMALL_STATE(2131)] = 110985, + [SMALL_STATE(2132)] = 110996, + [SMALL_STATE(2133)] = 111013, + [SMALL_STATE(2134)] = 111024, + [SMALL_STATE(2135)] = 111039, + [SMALL_STATE(2136)] = 111056, + [SMALL_STATE(2137)] = 111073, + [SMALL_STATE(2138)] = 111084, + [SMALL_STATE(2139)] = 111101, + [SMALL_STATE(2140)] = 111118, + [SMALL_STATE(2141)] = 111135, + [SMALL_STATE(2142)] = 111152, + [SMALL_STATE(2143)] = 111163, + [SMALL_STATE(2144)] = 111174, + [SMALL_STATE(2145)] = 111185, + [SMALL_STATE(2146)] = 111196, + [SMALL_STATE(2147)] = 111207, + [SMALL_STATE(2148)] = 111218, + [SMALL_STATE(2149)] = 111229, + [SMALL_STATE(2150)] = 111240, + [SMALL_STATE(2151)] = 111251, + [SMALL_STATE(2152)] = 111262, + [SMALL_STATE(2153)] = 111273, + [SMALL_STATE(2154)] = 111284, + [SMALL_STATE(2155)] = 111295, + [SMALL_STATE(2156)] = 111312, + [SMALL_STATE(2157)] = 111323, + [SMALL_STATE(2158)] = 111334, + [SMALL_STATE(2159)] = 111351, + [SMALL_STATE(2160)] = 111366, + [SMALL_STATE(2161)] = 111379, + [SMALL_STATE(2162)] = 111390, + [SMALL_STATE(2163)] = 111401, + [SMALL_STATE(2164)] = 111416, + [SMALL_STATE(2165)] = 111431, + [SMALL_STATE(2166)] = 111442, + [SMALL_STATE(2167)] = 111453, + [SMALL_STATE(2168)] = 111470, + [SMALL_STATE(2169)] = 111481, + [SMALL_STATE(2170)] = 111496, + [SMALL_STATE(2171)] = 111507, + [SMALL_STATE(2172)] = 111522, + [SMALL_STATE(2173)] = 111539, + [SMALL_STATE(2174)] = 111556, + [SMALL_STATE(2175)] = 111571, + [SMALL_STATE(2176)] = 111582, + [SMALL_STATE(2177)] = 111597, + [SMALL_STATE(2178)] = 111612, + [SMALL_STATE(2179)] = 111625, + [SMALL_STATE(2180)] = 111636, + [SMALL_STATE(2181)] = 111651, + [SMALL_STATE(2182)] = 111662, + [SMALL_STATE(2183)] = 111673, + [SMALL_STATE(2184)] = 111684, + [SMALL_STATE(2185)] = 111695, + [SMALL_STATE(2186)] = 111706, + [SMALL_STATE(2187)] = 111717, + [SMALL_STATE(2188)] = 111734, + [SMALL_STATE(2189)] = 111745, + [SMALL_STATE(2190)] = 111756, + [SMALL_STATE(2191)] = 111771, + [SMALL_STATE(2192)] = 111786, + [SMALL_STATE(2193)] = 111803, + [SMALL_STATE(2194)] = 111814, + [SMALL_STATE(2195)] = 111825, + [SMALL_STATE(2196)] = 111836, + [SMALL_STATE(2197)] = 111847, + [SMALL_STATE(2198)] = 111858, + [SMALL_STATE(2199)] = 111875, + [SMALL_STATE(2200)] = 111892, + [SMALL_STATE(2201)] = 111907, + [SMALL_STATE(2202)] = 111918, + [SMALL_STATE(2203)] = 111929, + [SMALL_STATE(2204)] = 111946, + [SMALL_STATE(2205)] = 111957, + [SMALL_STATE(2206)] = 111974, + [SMALL_STATE(2207)] = 111989, + [SMALL_STATE(2208)] = 112000, + [SMALL_STATE(2209)] = 112015, + [SMALL_STATE(2210)] = 112032, + [SMALL_STATE(2211)] = 112043, + [SMALL_STATE(2212)] = 112058, + [SMALL_STATE(2213)] = 112075, + [SMALL_STATE(2214)] = 112092, + [SMALL_STATE(2215)] = 112103, + [SMALL_STATE(2216)] = 112114, + [SMALL_STATE(2217)] = 112125, + [SMALL_STATE(2218)] = 112136, + [SMALL_STATE(2219)] = 112147, + [SMALL_STATE(2220)] = 112158, + [SMALL_STATE(2221)] = 112169, + [SMALL_STATE(2222)] = 112180, + [SMALL_STATE(2223)] = 112191, + [SMALL_STATE(2224)] = 112208, + [SMALL_STATE(2225)] = 112219, + [SMALL_STATE(2226)] = 112230, + [SMALL_STATE(2227)] = 112247, + [SMALL_STATE(2228)] = 112264, + [SMALL_STATE(2229)] = 112275, + [SMALL_STATE(2230)] = 112286, + [SMALL_STATE(2231)] = 112297, + [SMALL_STATE(2232)] = 112308, + [SMALL_STATE(2233)] = 112319, + [SMALL_STATE(2234)] = 112330, + [SMALL_STATE(2235)] = 112341, + [SMALL_STATE(2236)] = 112352, + [SMALL_STATE(2237)] = 112363, + [SMALL_STATE(2238)] = 112378, + [SMALL_STATE(2239)] = 112395, + [SMALL_STATE(2240)] = 112410, + [SMALL_STATE(2241)] = 112421, + [SMALL_STATE(2242)] = 112432, + [SMALL_STATE(2243)] = 112447, + [SMALL_STATE(2244)] = 112458, + [SMALL_STATE(2245)] = 112471, + [SMALL_STATE(2246)] = 112482, + [SMALL_STATE(2247)] = 112493, + [SMALL_STATE(2248)] = 112510, + [SMALL_STATE(2249)] = 112527, + [SMALL_STATE(2250)] = 112538, + [SMALL_STATE(2251)] = 112553, + [SMALL_STATE(2252)] = 112570, + [SMALL_STATE(2253)] = 112587, + [SMALL_STATE(2254)] = 112604, + [SMALL_STATE(2255)] = 112615, + [SMALL_STATE(2256)] = 112626, + [SMALL_STATE(2257)] = 112640, + [SMALL_STATE(2258)] = 112654, + [SMALL_STATE(2259)] = 112668, + [SMALL_STATE(2260)] = 112682, + [SMALL_STATE(2261)] = 112696, + [SMALL_STATE(2262)] = 112710, + [SMALL_STATE(2263)] = 112724, + [SMALL_STATE(2264)] = 112738, + [SMALL_STATE(2265)] = 112752, + [SMALL_STATE(2266)] = 112766, + [SMALL_STATE(2267)] = 112778, + [SMALL_STATE(2268)] = 112792, + [SMALL_STATE(2269)] = 112804, + [SMALL_STATE(2270)] = 112818, + [SMALL_STATE(2271)] = 112832, + [SMALL_STATE(2272)] = 112846, + [SMALL_STATE(2273)] = 112860, + [SMALL_STATE(2274)] = 112874, + [SMALL_STATE(2275)] = 112888, + [SMALL_STATE(2276)] = 112902, + [SMALL_STATE(2277)] = 112916, + [SMALL_STATE(2278)] = 112930, + [SMALL_STATE(2279)] = 112944, + [SMALL_STATE(2280)] = 112958, + [SMALL_STATE(2281)] = 112972, + [SMALL_STATE(2282)] = 112982, + [SMALL_STATE(2283)] = 112996, + [SMALL_STATE(2284)] = 113010, + [SMALL_STATE(2285)] = 113024, + [SMALL_STATE(2286)] = 113038, + [SMALL_STATE(2287)] = 113052, + [SMALL_STATE(2288)] = 113064, + [SMALL_STATE(2289)] = 113078, + [SMALL_STATE(2290)] = 113092, + [SMALL_STATE(2291)] = 113102, + [SMALL_STATE(2292)] = 113116, + [SMALL_STATE(2293)] = 113130, + [SMALL_STATE(2294)] = 113144, + [SMALL_STATE(2295)] = 113158, + [SMALL_STATE(2296)] = 113172, + [SMALL_STATE(2297)] = 113182, + [SMALL_STATE(2298)] = 113196, + [SMALL_STATE(2299)] = 113210, + [SMALL_STATE(2300)] = 113224, + [SMALL_STATE(2301)] = 113234, + [SMALL_STATE(2302)] = 113248, + [SMALL_STATE(2303)] = 113262, + [SMALL_STATE(2304)] = 113276, + [SMALL_STATE(2305)] = 113290, + [SMALL_STATE(2306)] = 113304, + [SMALL_STATE(2307)] = 113318, + [SMALL_STATE(2308)] = 113332, + [SMALL_STATE(2309)] = 113346, + [SMALL_STATE(2310)] = 113360, + [SMALL_STATE(2311)] = 113374, + [SMALL_STATE(2312)] = 113388, + [SMALL_STATE(2313)] = 113402, + [SMALL_STATE(2314)] = 113416, + [SMALL_STATE(2315)] = 113430, + [SMALL_STATE(2316)] = 113444, + [SMALL_STATE(2317)] = 113458, + [SMALL_STATE(2318)] = 113472, + [SMALL_STATE(2319)] = 113486, + [SMALL_STATE(2320)] = 113500, + [SMALL_STATE(2321)] = 113514, + [SMALL_STATE(2322)] = 113528, + [SMALL_STATE(2323)] = 113540, + [SMALL_STATE(2324)] = 113550, + [SMALL_STATE(2325)] = 113564, + [SMALL_STATE(2326)] = 113578, + [SMALL_STATE(2327)] = 113592, + [SMALL_STATE(2328)] = 113604, + [SMALL_STATE(2329)] = 113618, + [SMALL_STATE(2330)] = 113630, + [SMALL_STATE(2331)] = 113644, + [SMALL_STATE(2332)] = 113658, + [SMALL_STATE(2333)] = 113668, + [SMALL_STATE(2334)] = 113682, + [SMALL_STATE(2335)] = 113696, + [SMALL_STATE(2336)] = 113710, + [SMALL_STATE(2337)] = 113724, + [SMALL_STATE(2338)] = 113736, + [SMALL_STATE(2339)] = 113748, + [SMALL_STATE(2340)] = 113762, + [SMALL_STATE(2341)] = 113774, + [SMALL_STATE(2342)] = 113788, + [SMALL_STATE(2343)] = 113802, + [SMALL_STATE(2344)] = 113816, + [SMALL_STATE(2345)] = 113830, + [SMALL_STATE(2346)] = 113844, + [SMALL_STATE(2347)] = 113858, + [SMALL_STATE(2348)] = 113868, + [SMALL_STATE(2349)] = 113882, + [SMALL_STATE(2350)] = 113896, + [SMALL_STATE(2351)] = 113910, + [SMALL_STATE(2352)] = 113924, + [SMALL_STATE(2353)] = 113936, + [SMALL_STATE(2354)] = 113950, + [SMALL_STATE(2355)] = 113964, + [SMALL_STATE(2356)] = 113978, + [SMALL_STATE(2357)] = 113992, + [SMALL_STATE(2358)] = 114006, + [SMALL_STATE(2359)] = 114020, + [SMALL_STATE(2360)] = 114034, + [SMALL_STATE(2361)] = 114048, + [SMALL_STATE(2362)] = 114062, + [SMALL_STATE(2363)] = 114076, + [SMALL_STATE(2364)] = 114090, + [SMALL_STATE(2365)] = 114104, + [SMALL_STATE(2366)] = 114118, + [SMALL_STATE(2367)] = 114132, + [SMALL_STATE(2368)] = 114146, + [SMALL_STATE(2369)] = 114160, + [SMALL_STATE(2370)] = 114174, + [SMALL_STATE(2371)] = 114188, + [SMALL_STATE(2372)] = 114202, + [SMALL_STATE(2373)] = 114216, + [SMALL_STATE(2374)] = 114230, + [SMALL_STATE(2375)] = 114240, + [SMALL_STATE(2376)] = 114252, + [SMALL_STATE(2377)] = 114266, + [SMALL_STATE(2378)] = 114278, + [SMALL_STATE(2379)] = 114292, + [SMALL_STATE(2380)] = 114306, + [SMALL_STATE(2381)] = 114320, + [SMALL_STATE(2382)] = 114334, + [SMALL_STATE(2383)] = 114348, + [SMALL_STATE(2384)] = 114362, + [SMALL_STATE(2385)] = 114376, + [SMALL_STATE(2386)] = 114390, + [SMALL_STATE(2387)] = 114404, + [SMALL_STATE(2388)] = 114418, + [SMALL_STATE(2389)] = 114432, + [SMALL_STATE(2390)] = 114444, + [SMALL_STATE(2391)] = 114458, + [SMALL_STATE(2392)] = 114472, + [SMALL_STATE(2393)] = 114486, + [SMALL_STATE(2394)] = 114500, + [SMALL_STATE(2395)] = 114514, + [SMALL_STATE(2396)] = 114528, + [SMALL_STATE(2397)] = 114542, + [SMALL_STATE(2398)] = 114556, + [SMALL_STATE(2399)] = 114570, + [SMALL_STATE(2400)] = 114584, + [SMALL_STATE(2401)] = 114594, + [SMALL_STATE(2402)] = 114608, + [SMALL_STATE(2403)] = 114622, + [SMALL_STATE(2404)] = 114636, + [SMALL_STATE(2405)] = 114650, + [SMALL_STATE(2406)] = 114660, + [SMALL_STATE(2407)] = 114674, + [SMALL_STATE(2408)] = 114688, + [SMALL_STATE(2409)] = 114702, + [SMALL_STATE(2410)] = 114716, + [SMALL_STATE(2411)] = 114730, + [SMALL_STATE(2412)] = 114744, + [SMALL_STATE(2413)] = 114758, + [SMALL_STATE(2414)] = 114772, + [SMALL_STATE(2415)] = 114786, + [SMALL_STATE(2416)] = 114800, + [SMALL_STATE(2417)] = 114814, + [SMALL_STATE(2418)] = 114828, + [SMALL_STATE(2419)] = 114840, + [SMALL_STATE(2420)] = 114854, + [SMALL_STATE(2421)] = 114868, + [SMALL_STATE(2422)] = 114882, + [SMALL_STATE(2423)] = 114896, + [SMALL_STATE(2424)] = 114910, + [SMALL_STATE(2425)] = 114924, + [SMALL_STATE(2426)] = 114936, + [SMALL_STATE(2427)] = 114950, + [SMALL_STATE(2428)] = 114962, + [SMALL_STATE(2429)] = 114976, + [SMALL_STATE(2430)] = 114990, + [SMALL_STATE(2431)] = 115004, + [SMALL_STATE(2432)] = 115018, + [SMALL_STATE(2433)] = 115032, + [SMALL_STATE(2434)] = 115046, + [SMALL_STATE(2435)] = 115058, + [SMALL_STATE(2436)] = 115070, + [SMALL_STATE(2437)] = 115084, + [SMALL_STATE(2438)] = 115098, + [SMALL_STATE(2439)] = 115112, + [SMALL_STATE(2440)] = 115124, + [SMALL_STATE(2441)] = 115138, + [SMALL_STATE(2442)] = 115152, + [SMALL_STATE(2443)] = 115166, + [SMALL_STATE(2444)] = 115180, + [SMALL_STATE(2445)] = 115194, + [SMALL_STATE(2446)] = 115208, + [SMALL_STATE(2447)] = 115222, + [SMALL_STATE(2448)] = 115236, + [SMALL_STATE(2449)] = 115250, + [SMALL_STATE(2450)] = 115264, + [SMALL_STATE(2451)] = 115278, + [SMALL_STATE(2452)] = 115292, + [SMALL_STATE(2453)] = 115306, + [SMALL_STATE(2454)] = 115320, + [SMALL_STATE(2455)] = 115334, + [SMALL_STATE(2456)] = 115348, + [SMALL_STATE(2457)] = 115362, + [SMALL_STATE(2458)] = 115376, + [SMALL_STATE(2459)] = 115388, + [SMALL_STATE(2460)] = 115402, + [SMALL_STATE(2461)] = 115414, + [SMALL_STATE(2462)] = 115428, + [SMALL_STATE(2463)] = 115440, + [SMALL_STATE(2464)] = 115454, + [SMALL_STATE(2465)] = 115468, + [SMALL_STATE(2466)] = 115480, + [SMALL_STATE(2467)] = 115494, + [SMALL_STATE(2468)] = 115504, + [SMALL_STATE(2469)] = 115518, + [SMALL_STATE(2470)] = 115532, + [SMALL_STATE(2471)] = 115546, + [SMALL_STATE(2472)] = 115560, + [SMALL_STATE(2473)] = 115570, + [SMALL_STATE(2474)] = 115580, + [SMALL_STATE(2475)] = 115594, + [SMALL_STATE(2476)] = 115608, + [SMALL_STATE(2477)] = 115622, + [SMALL_STATE(2478)] = 115636, + [SMALL_STATE(2479)] = 115650, + [SMALL_STATE(2480)] = 115664, + [SMALL_STATE(2481)] = 115678, + [SMALL_STATE(2482)] = 115692, + [SMALL_STATE(2483)] = 115706, + [SMALL_STATE(2484)] = 115720, + [SMALL_STATE(2485)] = 115734, + [SMALL_STATE(2486)] = 115748, + [SMALL_STATE(2487)] = 115762, + [SMALL_STATE(2488)] = 115776, + [SMALL_STATE(2489)] = 115790, + [SMALL_STATE(2490)] = 115804, + [SMALL_STATE(2491)] = 115818, + [SMALL_STATE(2492)] = 115832, + [SMALL_STATE(2493)] = 115846, + [SMALL_STATE(2494)] = 115860, + [SMALL_STATE(2495)] = 115874, + [SMALL_STATE(2496)] = 115888, + [SMALL_STATE(2497)] = 115902, + [SMALL_STATE(2498)] = 115916, + [SMALL_STATE(2499)] = 115930, + [SMALL_STATE(2500)] = 115944, + [SMALL_STATE(2501)] = 115958, + [SMALL_STATE(2502)] = 115972, + [SMALL_STATE(2503)] = 115982, + [SMALL_STATE(2504)] = 115996, + [SMALL_STATE(2505)] = 116010, + [SMALL_STATE(2506)] = 116024, + [SMALL_STATE(2507)] = 116038, + [SMALL_STATE(2508)] = 116052, + [SMALL_STATE(2509)] = 116066, + [SMALL_STATE(2510)] = 116078, + [SMALL_STATE(2511)] = 116092, + [SMALL_STATE(2512)] = 116106, + [SMALL_STATE(2513)] = 116120, + [SMALL_STATE(2514)] = 116134, + [SMALL_STATE(2515)] = 116148, + [SMALL_STATE(2516)] = 116162, + [SMALL_STATE(2517)] = 116171, + [SMALL_STATE(2518)] = 116182, + [SMALL_STATE(2519)] = 116191, + [SMALL_STATE(2520)] = 116200, + [SMALL_STATE(2521)] = 116209, + [SMALL_STATE(2522)] = 116218, + [SMALL_STATE(2523)] = 116227, + [SMALL_STATE(2524)] = 116236, + [SMALL_STATE(2525)] = 116245, + [SMALL_STATE(2526)] = 116254, + [SMALL_STATE(2527)] = 116263, + [SMALL_STATE(2528)] = 116274, + [SMALL_STATE(2529)] = 116285, + [SMALL_STATE(2530)] = 116294, + [SMALL_STATE(2531)] = 116303, + [SMALL_STATE(2532)] = 116312, + [SMALL_STATE(2533)] = 116321, + [SMALL_STATE(2534)] = 116330, + [SMALL_STATE(2535)] = 116339, + [SMALL_STATE(2536)] = 116348, + [SMALL_STATE(2537)] = 116357, + [SMALL_STATE(2538)] = 116366, + [SMALL_STATE(2539)] = 116375, + [SMALL_STATE(2540)] = 116384, + [SMALL_STATE(2541)] = 116393, + [SMALL_STATE(2542)] = 116402, + [SMALL_STATE(2543)] = 116411, + [SMALL_STATE(2544)] = 116420, + [SMALL_STATE(2545)] = 116429, + [SMALL_STATE(2546)] = 116438, + [SMALL_STATE(2547)] = 116447, + [SMALL_STATE(2548)] = 116456, + [SMALL_STATE(2549)] = 116465, + [SMALL_STATE(2550)] = 116474, + [SMALL_STATE(2551)] = 116483, + [SMALL_STATE(2552)] = 116494, + [SMALL_STATE(2553)] = 116503, + [SMALL_STATE(2554)] = 116512, + [SMALL_STATE(2555)] = 116521, + [SMALL_STATE(2556)] = 116530, + [SMALL_STATE(2557)] = 116539, + [SMALL_STATE(2558)] = 116548, + [SMALL_STATE(2559)] = 116559, + [SMALL_STATE(2560)] = 116568, + [SMALL_STATE(2561)] = 116577, + [SMALL_STATE(2562)] = 116586, + [SMALL_STATE(2563)] = 116597, + [SMALL_STATE(2564)] = 116606, + [SMALL_STATE(2565)] = 116617, + [SMALL_STATE(2566)] = 116626, + [SMALL_STATE(2567)] = 116635, + [SMALL_STATE(2568)] = 116646, + [SMALL_STATE(2569)] = 116655, + [SMALL_STATE(2570)] = 116664, + [SMALL_STATE(2571)] = 116675, + [SMALL_STATE(2572)] = 116686, + [SMALL_STATE(2573)] = 116695, + [SMALL_STATE(2574)] = 116704, + [SMALL_STATE(2575)] = 116713, + [SMALL_STATE(2576)] = 116724, + [SMALL_STATE(2577)] = 116735, + [SMALL_STATE(2578)] = 116744, + [SMALL_STATE(2579)] = 116753, + [SMALL_STATE(2580)] = 116764, + [SMALL_STATE(2581)] = 116775, + [SMALL_STATE(2582)] = 116784, + [SMALL_STATE(2583)] = 116795, + [SMALL_STATE(2584)] = 116806, + [SMALL_STATE(2585)] = 116817, + [SMALL_STATE(2586)] = 116826, + [SMALL_STATE(2587)] = 116835, + [SMALL_STATE(2588)] = 116844, + [SMALL_STATE(2589)] = 116855, + [SMALL_STATE(2590)] = 116864, + [SMALL_STATE(2591)] = 116875, + [SMALL_STATE(2592)] = 116886, + [SMALL_STATE(2593)] = 116895, + [SMALL_STATE(2594)] = 116906, + [SMALL_STATE(2595)] = 116915, + [SMALL_STATE(2596)] = 116924, + [SMALL_STATE(2597)] = 116935, + [SMALL_STATE(2598)] = 116944, + [SMALL_STATE(2599)] = 116953, + [SMALL_STATE(2600)] = 116962, + [SMALL_STATE(2601)] = 116971, + [SMALL_STATE(2602)] = 116980, + [SMALL_STATE(2603)] = 116989, + [SMALL_STATE(2604)] = 116998, + [SMALL_STATE(2605)] = 117007, + [SMALL_STATE(2606)] = 117016, + [SMALL_STATE(2607)] = 117025, + [SMALL_STATE(2608)] = 117036, + [SMALL_STATE(2609)] = 117047, + [SMALL_STATE(2610)] = 117056, + [SMALL_STATE(2611)] = 117065, + [SMALL_STATE(2612)] = 117074, + [SMALL_STATE(2613)] = 117083, + [SMALL_STATE(2614)] = 117092, + [SMALL_STATE(2615)] = 117101, + [SMALL_STATE(2616)] = 117112, + [SMALL_STATE(2617)] = 117121, + [SMALL_STATE(2618)] = 117129, + [SMALL_STATE(2619)] = 117137, + [SMALL_STATE(2620)] = 117145, + [SMALL_STATE(2621)] = 117153, + [SMALL_STATE(2622)] = 117161, + [SMALL_STATE(2623)] = 117169, + [SMALL_STATE(2624)] = 117177, + [SMALL_STATE(2625)] = 117185, + [SMALL_STATE(2626)] = 117193, + [SMALL_STATE(2627)] = 117201, + [SMALL_STATE(2628)] = 117209, + [SMALL_STATE(2629)] = 117217, + [SMALL_STATE(2630)] = 117225, + [SMALL_STATE(2631)] = 117233, + [SMALL_STATE(2632)] = 117241, + [SMALL_STATE(2633)] = 117249, + [SMALL_STATE(2634)] = 117257, + [SMALL_STATE(2635)] = 117265, + [SMALL_STATE(2636)] = 117273, + [SMALL_STATE(2637)] = 117281, + [SMALL_STATE(2638)] = 117289, + [SMALL_STATE(2639)] = 117297, + [SMALL_STATE(2640)] = 117305, + [SMALL_STATE(2641)] = 117313, + [SMALL_STATE(2642)] = 117321, + [SMALL_STATE(2643)] = 117329, + [SMALL_STATE(2644)] = 117337, + [SMALL_STATE(2645)] = 117345, + [SMALL_STATE(2646)] = 117353, + [SMALL_STATE(2647)] = 117361, + [SMALL_STATE(2648)] = 117369, + [SMALL_STATE(2649)] = 117377, + [SMALL_STATE(2650)] = 117385, + [SMALL_STATE(2651)] = 117393, + [SMALL_STATE(2652)] = 117401, + [SMALL_STATE(2653)] = 117409, + [SMALL_STATE(2654)] = 117417, + [SMALL_STATE(2655)] = 117425, + [SMALL_STATE(2656)] = 117433, + [SMALL_STATE(2657)] = 117441, + [SMALL_STATE(2658)] = 117449, + [SMALL_STATE(2659)] = 117457, + [SMALL_STATE(2660)] = 117465, + [SMALL_STATE(2661)] = 117473, + [SMALL_STATE(2662)] = 117481, + [SMALL_STATE(2663)] = 117489, + [SMALL_STATE(2664)] = 117497, + [SMALL_STATE(2665)] = 117505, + [SMALL_STATE(2666)] = 117513, + [SMALL_STATE(2667)] = 117521, + [SMALL_STATE(2668)] = 117529, + [SMALL_STATE(2669)] = 117537, + [SMALL_STATE(2670)] = 117545, + [SMALL_STATE(2671)] = 117553, + [SMALL_STATE(2672)] = 117561, + [SMALL_STATE(2673)] = 117569, + [SMALL_STATE(2674)] = 117577, + [SMALL_STATE(2675)] = 117585, + [SMALL_STATE(2676)] = 117593, + [SMALL_STATE(2677)] = 117601, + [SMALL_STATE(2678)] = 117609, + [SMALL_STATE(2679)] = 117617, + [SMALL_STATE(2680)] = 117625, + [SMALL_STATE(2681)] = 117633, + [SMALL_STATE(2682)] = 117641, + [SMALL_STATE(2683)] = 117649, + [SMALL_STATE(2684)] = 117657, + [SMALL_STATE(2685)] = 117665, + [SMALL_STATE(2686)] = 117673, + [SMALL_STATE(2687)] = 117681, + [SMALL_STATE(2688)] = 117689, + [SMALL_STATE(2689)] = 117697, + [SMALL_STATE(2690)] = 117705, + [SMALL_STATE(2691)] = 117713, + [SMALL_STATE(2692)] = 117721, + [SMALL_STATE(2693)] = 117729, + [SMALL_STATE(2694)] = 117737, + [SMALL_STATE(2695)] = 117745, + [SMALL_STATE(2696)] = 117753, + [SMALL_STATE(2697)] = 117761, + [SMALL_STATE(2698)] = 117769, + [SMALL_STATE(2699)] = 117777, + [SMALL_STATE(2700)] = 117785, + [SMALL_STATE(2701)] = 117793, + [SMALL_STATE(2702)] = 117801, + [SMALL_STATE(2703)] = 117809, + [SMALL_STATE(2704)] = 117817, + [SMALL_STATE(2705)] = 117825, + [SMALL_STATE(2706)] = 117833, + [SMALL_STATE(2707)] = 117841, + [SMALL_STATE(2708)] = 117849, + [SMALL_STATE(2709)] = 117857, + [SMALL_STATE(2710)] = 117865, + [SMALL_STATE(2711)] = 117873, + [SMALL_STATE(2712)] = 117881, + [SMALL_STATE(2713)] = 117889, + [SMALL_STATE(2714)] = 117897, + [SMALL_STATE(2715)] = 117905, + [SMALL_STATE(2716)] = 117913, + [SMALL_STATE(2717)] = 117921, + [SMALL_STATE(2718)] = 117929, + [SMALL_STATE(2719)] = 117937, + [SMALL_STATE(2720)] = 117945, + [SMALL_STATE(2721)] = 117953, + [SMALL_STATE(2722)] = 117961, + [SMALL_STATE(2723)] = 117969, + [SMALL_STATE(2724)] = 117977, + [SMALL_STATE(2725)] = 117985, + [SMALL_STATE(2726)] = 117993, + [SMALL_STATE(2727)] = 118001, + [SMALL_STATE(2728)] = 118009, + [SMALL_STATE(2729)] = 118017, + [SMALL_STATE(2730)] = 118025, + [SMALL_STATE(2731)] = 118033, + [SMALL_STATE(2732)] = 118041, + [SMALL_STATE(2733)] = 118049, + [SMALL_STATE(2734)] = 118057, + [SMALL_STATE(2735)] = 118065, + [SMALL_STATE(2736)] = 118073, + [SMALL_STATE(2737)] = 118081, + [SMALL_STATE(2738)] = 118089, + [SMALL_STATE(2739)] = 118097, + [SMALL_STATE(2740)] = 118105, + [SMALL_STATE(2741)] = 118113, + [SMALL_STATE(2742)] = 118121, + [SMALL_STATE(2743)] = 118129, + [SMALL_STATE(2744)] = 118137, + [SMALL_STATE(2745)] = 118145, + [SMALL_STATE(2746)] = 118153, + [SMALL_STATE(2747)] = 118161, + [SMALL_STATE(2748)] = 118169, + [SMALL_STATE(2749)] = 118177, + [SMALL_STATE(2750)] = 118185, + [SMALL_STATE(2751)] = 118193, + [SMALL_STATE(2752)] = 118201, + [SMALL_STATE(2753)] = 118209, + [SMALL_STATE(2754)] = 118217, + [SMALL_STATE(2755)] = 118225, + [SMALL_STATE(2756)] = 118233, + [SMALL_STATE(2757)] = 118241, + [SMALL_STATE(2758)] = 118249, + [SMALL_STATE(2759)] = 118257, + [SMALL_STATE(2760)] = 118265, + [SMALL_STATE(2761)] = 118273, + [SMALL_STATE(2762)] = 118281, + [SMALL_STATE(2763)] = 118289, + [SMALL_STATE(2764)] = 118297, + [SMALL_STATE(2765)] = 118305, + [SMALL_STATE(2766)] = 118313, + [SMALL_STATE(2767)] = 118321, + [SMALL_STATE(2768)] = 118329, + [SMALL_STATE(2769)] = 118337, + [SMALL_STATE(2770)] = 118345, + [SMALL_STATE(2771)] = 118353, + [SMALL_STATE(2772)] = 118361, + [SMALL_STATE(2773)] = 118369, + [SMALL_STATE(2774)] = 118377, + [SMALL_STATE(2775)] = 118385, + [SMALL_STATE(2776)] = 118393, + [SMALL_STATE(2777)] = 118401, + [SMALL_STATE(2778)] = 118409, + [SMALL_STATE(2779)] = 118417, + [SMALL_STATE(2780)] = 118425, + [SMALL_STATE(2781)] = 118433, + [SMALL_STATE(2782)] = 118441, + [SMALL_STATE(2783)] = 118449, + [SMALL_STATE(2784)] = 118457, + [SMALL_STATE(2785)] = 118465, + [SMALL_STATE(2786)] = 118473, + [SMALL_STATE(2787)] = 118481, + [SMALL_STATE(2788)] = 118489, + [SMALL_STATE(2789)] = 118497, + [SMALL_STATE(2790)] = 118505, + [SMALL_STATE(2791)] = 118513, + [SMALL_STATE(2792)] = 118521, + [SMALL_STATE(2793)] = 118529, + [SMALL_STATE(2794)] = 118537, + [SMALL_STATE(2795)] = 118545, + [SMALL_STATE(2796)] = 118553, + [SMALL_STATE(2797)] = 118561, + [SMALL_STATE(2798)] = 118569, + [SMALL_STATE(2799)] = 118577, + [SMALL_STATE(2800)] = 118585, + [SMALL_STATE(2801)] = 118593, + [SMALL_STATE(2802)] = 118601, + [SMALL_STATE(2803)] = 118609, + [SMALL_STATE(2804)] = 118617, + [SMALL_STATE(2805)] = 118625, + [SMALL_STATE(2806)] = 118633, + [SMALL_STATE(2807)] = 118641, + [SMALL_STATE(2808)] = 118649, + [SMALL_STATE(2809)] = 118657, + [SMALL_STATE(2810)] = 118665, + [SMALL_STATE(2811)] = 118673, + [SMALL_STATE(2812)] = 118681, + [SMALL_STATE(2813)] = 118689, + [SMALL_STATE(2814)] = 118697, + [SMALL_STATE(2815)] = 118705, + [SMALL_STATE(2816)] = 118713, + [SMALL_STATE(2817)] = 118721, + [SMALL_STATE(2818)] = 118729, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -124615,2176 +130364,2445 @@ 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), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(612), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2026), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1814), - [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(196), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(930), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(85), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(609), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(379), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(474), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(348), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2255), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2256), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2257), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(557), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(87), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(464), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(762), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(568), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2507), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(444), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2532), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2526), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2525), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(470), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(75), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2509), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(213), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(587), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(586), - [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(968), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1589), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(361), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1055), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(193), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1055), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(158), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(603), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2252), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1875), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(201), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(869), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(84), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(495), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(368), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(467), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(360), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2521), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2522), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2523), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(561), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(85), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(469), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(722), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(545), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2783), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(434), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2808), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2802), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2801), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(461), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(73), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2785), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(221), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(585), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(954), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(215), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(587), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1654), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(359), + [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1077), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1077), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1693), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(601), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(88), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(476), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(811), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(593), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2528), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(416), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2527), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2524), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1756), + [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(523), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(86), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(462), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(733), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(532), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2804), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(418), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2803), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(2800), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(316), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(294), [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(917), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(937), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2383), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(318), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(592), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(972), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(2667), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(291), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(934), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(499), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(270), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(958), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(293), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(586), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(968), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 79), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 79), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(302), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(936), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(298), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(954), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(587), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 5), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 99), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 98), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 79), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 79), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 110), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 5), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 15), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 14), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 63), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 63), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 42), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 42), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(551), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(466), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 83), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 83), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 37), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(580), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(472), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2), - [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), - [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(494), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(581), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 48), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 48), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 23), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 23), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 48), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 48), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 72), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 72), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 72), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 72), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 14), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 6), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 15), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 42), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 42), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 63), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 63), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(507), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 56), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 57), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 37), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 37), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 83), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 83), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(470), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(464), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(521), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 72), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 72), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(502), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 23), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 23), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 48), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 48), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(489), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 72), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 72), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 48), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 48), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 106), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 106), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 128), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 128), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 90), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 90), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 128), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 128), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 106), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 106), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, .production_id = 106), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, .production_id = 106), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 41), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 41), - [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 57), - [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 57), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 129), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 129), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 129), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 129), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 90), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 90), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 106), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 106), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 101), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 101), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 57), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 57), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 37), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 37), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 42), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 42), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 114), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 105), [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 105), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 105), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 101), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 101), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 37), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 37), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 115), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 115), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 42), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 42), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 63), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 63), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 62), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 62), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 88), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 88), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 42), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 42), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 63), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 63), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 119), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 119), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 108), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 108), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 107), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 107), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 63), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 63), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 54), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 41), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 41), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 63), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 63), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 62), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 62), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 88), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 88), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 63), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 63), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 42), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 42), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 92), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 92), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 107), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 107), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 103), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 103), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 39), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 39), [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 61), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 61), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 44), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 44), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 125), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 125), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 126), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 126), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 127), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 127), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 60), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 60), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 109), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 109), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 63), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 63), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 108), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 108), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 109), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 109), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 58), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 58), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 59), [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 59), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 129), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 129), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, .production_id = 84), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, .production_id = 84), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 103), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 103), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 102), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 102), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 85), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 85), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 86), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 86), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 58), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 58), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 120), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 120), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 136), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 136), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 64), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 64), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 118), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 118), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 55), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 55), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 60), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 60), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 43), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 43), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 44), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 44), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 64), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 64), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 65), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 55), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 55), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 66), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 66), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 67), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 67), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 68), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 68), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 113), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 113), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 115), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 115), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 116), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 116), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 117), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 117), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 118), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 118), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 119), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 119), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 95), [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 95), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 95), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 94), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 94), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 93), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 93), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 92), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 92), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 91), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 91), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 117), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 117), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 87), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 87), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 42), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 42), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 116), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 116), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 114), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 114), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 90), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 90), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 89), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 89), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 65), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 65), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 80), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 80), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 43), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 43), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 68), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 68), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 39), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 39), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 66), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 66), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 67), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 67), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1693), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 21), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 21), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 9), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 9), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1666), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1657), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1679), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1684), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1661), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1670), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 10), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 10), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 33), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 33), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 34), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 34), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 33), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 33), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 33), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 33), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1658), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(894), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2362), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(894), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(865), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(950), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2468), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(950), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(860), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(931), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2441), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(931), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(862), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(904), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2412), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(904), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(867), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(914), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2364), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(914), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(866), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(954), - [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2423), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(954), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(863), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(967), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2425), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(967), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(861), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(854), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(880), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2384), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(880), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(864), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(857), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), - [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(486), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 17), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 22), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 46), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), SHIFT(338), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(600), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(565), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(229), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1798), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1798), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(606), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(560), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 22), - [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(497), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(588), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 47), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 8), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(509), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(579), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2540), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(808), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(575), - [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2486), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(804), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1805), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1805), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(516), - [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2537), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(836), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 71), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 97), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 97), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(418), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 99), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 18), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 19), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 70), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 45), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 18), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 110), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(449), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 96), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 79), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(522), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(423), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 111), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(855), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(587), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 26), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 26), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), - [3376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2503), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 16), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 53), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 53), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 36), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 38), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 52), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 52), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 74), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 74), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 26), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 26), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 75), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 75), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 76), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 76), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 17), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(525), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 4), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 13), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 46), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(228), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1962), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2467), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 4), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 8), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1986), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 13), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2371), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 14), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 15), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), SHIFT_REPEAT(493), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 81), SHIFT_REPEAT(502), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 81), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 113), SHIFT_REPEAT(510), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 113), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2069), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 27), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(529), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [3732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1611), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 29), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(469), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(352), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(157), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(853), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2098), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(393), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 8), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(852), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(569), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(597), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(357), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1612), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), SHIFT_REPEAT(236), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2487), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), SHIFT_REPEAT(507), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(345), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 73), SHIFT_REPEAT(414), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 73), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(856), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(331), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(477), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 141), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 140), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 139), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 33), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 138), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 137), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 3), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 135), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 69), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 134), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 133), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 132), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 131), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 130), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 124), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 123), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, .production_id = 54), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 122), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 121), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 112), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 30), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 21), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 20), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 33), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 77), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 31), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 32), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 78), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4488] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 61), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 61), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 135), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 135), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 130), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 130), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 80), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 80), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 82), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 128), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 128), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 12), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 127), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 127), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 126), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 126), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 100), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, .production_id = 84), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, .production_id = 84), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 85), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 85), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 86), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 86), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 87), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 87), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 89), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 89), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 90), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 90), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 42), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 42), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 91), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 91), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 94), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 94), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 93), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 93), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 102), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 102), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1756), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 21), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 21), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 49), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 50), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 24), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1744), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 9), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1738), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1755), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1723), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1737), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1730), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 34), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 34), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 33), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 33), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 34), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 33), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 33), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 34), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 34), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 33), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 33), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 10), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 10), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1752), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(904), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2686), + [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(904), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(856), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 11), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(959), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2770), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(959), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(852), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(945), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2712), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(945), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(854), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(956), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2735), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(956), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(851), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(878), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2789), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(878), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(855), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(909), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2639), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(909), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(858), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(863), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2668), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(863), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(853), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(846), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(895), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(2773), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(895), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 25), SHIFT_REPEAT(857), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(845), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 22), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 17), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 47), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(497), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), SHIFT(335), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(543), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(225), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1896), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1896), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(555), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 21), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(590), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(565), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2766), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 6), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(582), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 22), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(510), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 8), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 6), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 18), SHIFT(598), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 45), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 6), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1863), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1863), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2764), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2666), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(511), + [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2813), + [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(751), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2739), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 71), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(483), + [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2791), + [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(836), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(541), + [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(2816), + [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(726), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 7), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(410), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 110), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2), SHIFT_REPEAT(2762), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 16), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 46), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 96), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 18), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 79), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(843), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 70), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 18), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 53), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 53), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 99), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 97), + [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 97), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 52), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 52), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(570), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 38), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 26), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 26), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 19), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(585), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2), SHIFT_REPEAT(1578), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(403), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 74), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 74), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 26), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 26), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 75), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 76), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 76), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 36), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(408), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2), SHIFT_REPEAT(1572), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 13), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 4), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 17), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, .production_id = 122), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, .production_id = 120), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(224), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(2049), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 4), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, .production_id = 122), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2), SHIFT_REPEAT(1574), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 47), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(564), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .dynamic_precedence = 1), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, .production_id = 120), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, .production_id = 111), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2), SHIFT_REPEAT(1577), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, .production_id = 111), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2), SHIFT_REPEAT(1550), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 15), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 14), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 8), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(2190), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(2733), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 13), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 81), SHIFT_REPEAT(1547), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 81), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 35), SHIFT_REPEAT(501), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 27), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), + [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2413), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(848), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(487), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(350), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 29), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(362), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, .production_id = 121), SHIFT_REPEAT(1571), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, .production_id = 121), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), SHIFT_REPEAT(512), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 40), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, .production_id = 45), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(844), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(457), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(349), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(522), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 28), SHIFT_REPEAT(2448), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(375), + [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1675), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 51), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 8), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(153), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(463), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1674), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2), SHIFT_REPEAT(1548), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 73), SHIFT_REPEAT(424), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 73), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), SHIFT_REPEAT(257), + [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(847), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(331), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2), SHIFT_REPEAT(1549), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(492), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 33), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 31), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 69), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 30), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 139), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 138), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 3), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 137), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 136), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 134), + [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 133), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 132), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 125), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 124), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 123), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 33), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 131), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 77), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 78), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, .production_id = 111), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 112), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 32), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 21), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 20), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, .production_id = 54), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), }; #ifdef __cplusplus